diff options
author | Christopher Wiley <wiley@google.com> | 2015-08-24 14:07:32 -0700 |
---|---|---|
committer | Christopher Wiley <wiley@google.com> | 2015-08-24 14:28:36 -0700 |
commit | 1eaa9ed33488bbc8fe3d9185fd053e5aa1246681 (patch) | |
tree | 936c45c175fc992885768e9fcf290221b2cde63b /tools/aidl/options_test.cpp | |
parent | 582d16681bf46eb2f11c24132ffbcd9f7cc4b74d (diff) |
Do not merge namespaces
It is good practice to not include the whole std:: namespace into
the global namespace. This is doubly true in headers.
TEST=aidl compiles
Change-Id: I910ca8082f61cce4f23f8564b8a12c2828b75b3c
Diffstat (limited to 'tools/aidl/options_test.cpp')
-rw-r--r-- | tools/aidl/options_test.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/aidl/options_test.cpp b/tools/aidl/options_test.cpp index bd106ce54f2d..7ac527dc9e4f 100644 --- a/tools/aidl/options_test.cpp +++ b/tools/aidl/options_test.cpp @@ -3,7 +3,8 @@ const bool VERBOSE = false; -using namespace std; +using std::string; +using std::vector; struct Answer { const char* argv[8]; |