aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-10-14 05:21:08 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-10-14 05:21:08 +0000
commit51814d5ef1661326a8f79461135ec7bfe6f99e39 (patch)
tree124c7e9f5ba1b79387f9436ed1390ab211e7a0fd
parent9414a7a31d64ee64a1f9f3a96bac9c2fcd0c9022 (diff)
parent7e11c06a19d9aee00d5dc250265ce525b520e2d6 (diff)
downloadlibnativehelper-android14-qpr2-release.tar.gz
Change-Id: I0ad901f96f77300702ec0b8eafa2f0350ad98fd9
-rw-r--r--tests/JniSafeRegisterNativeMethods_test.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/JniSafeRegisterNativeMethods_test.cpp b/tests/JniSafeRegisterNativeMethods_test.cpp
index e7b0fc4..00571c2 100644
--- a/tests/JniSafeRegisterNativeMethods_test.cpp
+++ b/tests/JniSafeRegisterNativeMethods_test.cpp
@@ -14,24 +14,12 @@
* limitations under the License.
*/
-#pragma clang diagnostic push
-#pragma clang diagnostic ignored "-Wused-but-marked-unused"
-#pragma clang diagnostic ignored "-Wdeprecated"
#include <gtest/gtest.h>
-#pragma clang diagnostic pop
#include <sstream>
#define PARSE_FAILURES_NONFATAL // return empty optionals wherever possible instead of asserting.
#include "nativehelper/jni_macros.h"
-// Provide static storage to these values so they can be used in a runtime context.
-// This has to be defined local to the test translation unit to avoid ODR violations prior to C++17.
-#define STORAGE_FN_FOR_JNI_TRAITS(jtype, ...) \
-constexpr char nativehelper::detail::jni_type_trait<jtype>::type_descriptor[]; \
-constexpr char nativehelper::detail::jni_type_trait<jtype>::type_name[];
-
-DEFINE_JNI_TYPE_TRAIT(STORAGE_FN_FOR_JNI_TRAITS)
-
template <typename T>
std::string stringify_helper(const T& val) {
std::stringstream ss;