summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2014-11-25 18:51:48 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-11-25 18:51:48 +0000
commit022a6c54b405ca517740e33d75b7c3514e2d384e (patch)
treea8f01ef82cc56b3658ef270b0fd2dc7f283e28ce
parent59ad2fc312531c35d5d14cac5733f285b1aea9a4 (diff)
parentf96c7bd4b0c9c6e5770cda034b696212c9c6336d (diff)
downloadsystem_core-022a6c54b405ca517740e33d75b7c3514e2d384e.zip
system_core-022a6c54b405ca517740e33d75b7c3514e2d384e.tar.gz
system_core-022a6c54b405ca517740e33d75b7c3514e2d384e.tar.bz2
am f96c7bd4: Merge "Libutils: Comment out unused constants"
* commit 'f96c7bd4b0c9c6e5770cda034b696212c9c6336d': Libutils: Comment out unused constants
-rw-r--r--libutils/Unicode.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/libutils/Unicode.cpp b/libutils/Unicode.cpp
index d9334f7..fb876c9 100644
--- a/libutils/Unicode.cpp
+++ b/libutils/Unicode.cpp
@@ -40,8 +40,9 @@ static const char32_t kByteMark = 0x00000080;
// Surrogates aren't valid for UTF-32 characters, so define some
// constants that will let us screen them out.
static const char32_t kUnicodeSurrogateHighStart = 0x0000D800;
-static const char32_t kUnicodeSurrogateHighEnd = 0x0000DBFF;
-static const char32_t kUnicodeSurrogateLowStart = 0x0000DC00;
+// Unused, here for completeness:
+// static const char32_t kUnicodeSurrogateHighEnd = 0x0000DBFF;
+// static const char32_t kUnicodeSurrogateLowStart = 0x0000DC00;
static const char32_t kUnicodeSurrogateLowEnd = 0x0000DFFF;
static const char32_t kUnicodeSurrogateStart = kUnicodeSurrogateHighStart;
static const char32_t kUnicodeSurrogateEnd = kUnicodeSurrogateLowEnd;