summaryrefslogtreecommitdiffstats
path: root/clang/lib
diff options
context:
space:
mode:
Diffstat (limited to 'clang/lib')
-rw-r--r--clang/lib/AST/CMakeLists.txt1
-rw-r--r--clang/lib/AST/CharUnits.cpp20
2 files changed, 0 insertions, 21 deletions
diff --git a/clang/lib/AST/CMakeLists.txt b/clang/lib/AST/CMakeLists.txt
index 98880b5f77d..5aecf878c92 100644
--- a/clang/lib/AST/CMakeLists.txt
+++ b/clang/lib/AST/CMakeLists.txt
@@ -5,7 +5,6 @@ add_clang_library(clangAST
ASTConsumer.cpp
ASTContext.cpp
CXXInheritance.cpp
- CharUnits.cpp
Decl.cpp
DeclBase.cpp
DeclCXX.cpp
diff --git a/clang/lib/AST/CharUnits.cpp b/clang/lib/AST/CharUnits.cpp
deleted file mode 100644
index 30935d03853..00000000000
--- a/clang/lib/AST/CharUnits.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-//===--- CharUnits.cpp - Character units for sizes and offsets ------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is distributed under the University of Illinois Open Source
-// License. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-//
-// This file implements the CharUnits class.
-//
-//===----------------------------------------------------------------------===//
-
-#include "clang/AST/CharUnits.h"
-#include "llvm/ADT/StringExtras.h"
-using namespace clang;
-
-std::string CharUnits::toString() const {
- return llvm::itostr(Quantity);
-}
OpenPOWER on IntegriCloud