diff options
author | 2022-09-29 17:03:16 +0200 | |
---|---|---|
committer | 2022-09-30 06:53:59 +0000 | |
commit | 35be57fee6702d3847177343ab91899ba402eb9c (patch) | |
tree | e29542c503aa62000fbb6acf6fa4e8e3aed42b5c /runtime/mirror/class.cc | |
parent | 532c121e6b1ef3f8a49b1b2c1c6e37626b8cc13f (diff) |
Remove redundant definitions of constexpr data.
Avoid compiler warning:
out-of-line definition of constexpr static data member
is redundant in C++17 and is deprecated
Test: buildbot-build.sh
Change-Id: I213260298833db843a9e4153afd8814af7efa994
Diffstat (limited to 'runtime/mirror/class.cc')
-rw-r--r-- | runtime/mirror/class.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/runtime/mirror/class.cc b/runtime/mirror/class.cc index 4597416faf..79676007c1 100644 --- a/runtime/mirror/class.cc +++ b/runtime/mirror/class.cc @@ -59,10 +59,6 @@ namespace art { -// TODO: move to own CC file? -constexpr size_t BitString::kBitSizeAtPosition[BitString::kCapacity]; -constexpr size_t BitString::kCapacity; - namespace mirror { using android::base::StringPrintf; |