summaryrefslogtreecommitdiff
path: root/cpp/ScriptIntrinsicBLAS.cpp
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2016-11-04 15:55:18 -0700
committerChih-Hung Hsieh <chh@google.com>2016-11-04 15:57:49 -0700
commitdfcfabfccad8a8f2f42f83081638c7e5c9bfb4b9 (patch)
treed41b3b3daba01057f0cad47f0197b8f826a3b0c8 /cpp/ScriptIntrinsicBLAS.cpp
parent2600da366b2d1467a009510b0f4e55ca0c55762c (diff)
downloadrs-dfcfabfccad8a8f2f42f83081638c7e5c9bfb4b9.tar.gz
Fix google-build-using-namespace warnings.
Replace "using namespace ..." with "using namespace::identifier" for every imported identifiers. Bug: 32670901 Test: make with WITH_TIDY=1 Change-Id: Iae11a95b386c7e783e3bc50312a8fd4209e4ced7
Diffstat (limited to 'cpp/ScriptIntrinsicBLAS.cpp')
-rw-r--r--cpp/ScriptIntrinsicBLAS.cpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/cpp/ScriptIntrinsicBLAS.cpp b/cpp/ScriptIntrinsicBLAS.cpp
index dd31f812..2e31de83 100644
--- a/cpp/ScriptIntrinsicBLAS.cpp
+++ b/cpp/ScriptIntrinsicBLAS.cpp
@@ -20,8 +20,14 @@
#define NELEM(m) (sizeof(m) / sizeof((m)[0]))
-using namespace android;
-using namespace RSC;
+using android::RSC::Allocation;
+using android::RSC::Element;
+using android::RSC::RS;
+using android::RSC::RS_ERROR_INVALID_ELEMENT;
+using android::RSC::RS_ERROR_INVALID_PARAMETER;
+using android::RSC::RS_SUCCESS;
+using android::RSC::ScriptIntrinsicBLAS;
+using android::RSC::sp;
// ScriptIntrinsicBLAS APIS
ScriptIntrinsicBLAS::ScriptIntrinsicBLAS(sp<RS> rs, sp<const Element> e)