diff options
author | Mark Salyzyn <salyzyn@google.com> | 2015-08-19 13:31:31 -0700 |
---|---|---|
committer | Mark Salyzyn <salyzyn@google.com> | 2015-08-20 08:36:08 -0700 |
commit | e0ed16c6db5c443ecb5f9f7daca95a111fd1f582 (patch) | |
tree | d384444f2395cc8130ef08f8f8d657e64de4d3ab /logd/LogWhiteBlackList.h | |
parent | 98dca2d0b15f9a579efae8592dbb45059aad082e (diff) | |
download | core-e0ed16c6db5c443ecb5f9f7daca95a111fd1f582.tar.gz core-e0ed16c6db5c443ecb5f9f7daca95a111fd1f582.tar.bz2 core-e0ed16c6db5c443ecb5f9f7daca95a111fd1f582.zip |
logd: white and black switch to std::list
Bug: 23350706
Change-Id: I981d9fa63a0d87eb309485cca93cfc44fc0506cc
Diffstat (limited to 'logd/LogWhiteBlackList.h')
-rw-r--r-- | logd/LogWhiteBlackList.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/logd/LogWhiteBlackList.h b/logd/LogWhiteBlackList.h index 5f60801aa..57cd03b98 100644 --- a/logd/LogWhiteBlackList.h +++ b/logd/LogWhiteBlackList.h @@ -19,7 +19,7 @@ #include <sys/types.h> -#include <utils/List.h> +#include <list> #include <LogBufferElement.h> @@ -47,7 +47,7 @@ public: void format(char **strp); }; -typedef android::List<Prune *> PruneCollection; +typedef std::list<Prune> PruneCollection; class PruneList { PruneCollection mNaughty; |