summaryrefslogtreecommitdiffstats
path: root/runtime/strutil.h
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2014-12-03 10:48:05 -0800
committerIan Rogers <irogers@google.com>2014-12-03 10:48:05 -0800
commit14317f030db862bb2210135b9af510df429059fd (patch)
tree156a4bcc6d1410001d5cf3ba3fa2fda0317146cc /runtime/strutil.h
parent27478e627e08ab42c43d5d934da9ea336ccaf628 (diff)
downloadart-14317f030db862bb2210135b9af510df429059fd.zip
art-14317f030db862bb2210135b9af510df429059fd.tar.gz
art-14317f030db862bb2210135b9af510df429059fd.tar.bz2
Remove unused headers.
Push Closure into only use in thread_pool.h. Remove StringFile and NullFile that existed purely for a test. Change-Id: I329892d5e1f5f017caeb3d60600f803a74114fc1
Diffstat (limited to 'runtime/strutil.h')
-rw-r--r--runtime/strutil.h40
1 files changed, 0 insertions, 40 deletions
diff --git a/runtime/strutil.h b/runtime/strutil.h
deleted file mode 100644
index c8d39e2..0000000
--- a/runtime/strutil.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- * Copyright (C) 2011 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef ART_RUNTIME_STRUTIL_H_
-#define ART_RUNTIME_STRUTIL_H_
-
-#include <string.h>
-
-namespace art {
-
-// Key comparison function for C strings.
-struct CStringLt {
- bool operator()(const char* s1, const char* s2) const {
- return strcmp(s1, s2) < 0;
- }
-};
-
-// Key equality function for C strings.
-struct CStringEq {
- bool operator()(const char* s1, const char* s2) const {
- return strcmp(s1, s2) == 0;
- }
-};
-
-} // namespace art
-
-#endif // ART_RUNTIME_STRUTIL_H_