summaryrefslogtreecommitdiffstats
path: root/include/clang/AST/CharUnits.h
diff options
context:
space:
mode:
authorKen Dyck <ken.dyck@onsemi.com>2009-12-23 02:44:11 +0000
committerKen Dyck <ken.dyck@onsemi.com>2009-12-23 02:44:11 +0000
commit775f2eb49116baeb0c97d2085fac30174e2ebd43 (patch)
treef959d720fe59e62489696f713b3f21335d43a052 /include/clang/AST/CharUnits.h
parent52b08f2c8a65c059cb2123fa0fd6317b829416de (diff)
Remove CharUnits::toString() to eliminate dependence on <string>.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@91978 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/AST/CharUnits.h')
-rw-r--r--include/clang/AST/CharUnits.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/clang/AST/CharUnits.h b/include/clang/AST/CharUnits.h
index c0290765b6..7b2833c53f 100644
--- a/include/clang/AST/CharUnits.h
+++ b/include/clang/AST/CharUnits.h
@@ -16,8 +16,6 @@
#include "llvm/System/DataTypes.h"
-#include <string>
-
namespace clang {
/// CharUnits - This is an opaque type for sizes expressed in character units.
@@ -136,9 +134,6 @@ namespace clang {
// Conversions.
- /// toString - Convert to a string.
- std::string toString() const;
-
/// getRaw - Get the raw integer representation of this quantity.
RawType getRaw() const { return Quantity; }