From d3a34f81f87d5707c2f61d8e771c97d3678b5be4 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Tue, 16 Jul 2013 01:17:10 +0000 Subject: Add 'const' qualifiers to static const char* variables. llvm-svn: 186371 --- llvm/lib/Object/Archive.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Object/Archive.cpp') diff --git a/llvm/lib/Object/Archive.cpp b/llvm/lib/Object/Archive.cpp index 719d1042e5d..c6cf219c09b 100644 --- a/llvm/lib/Object/Archive.cpp +++ b/llvm/lib/Object/Archive.cpp @@ -21,7 +21,7 @@ using namespace llvm; using namespace object; -static const char *Magic = "!\n"; +static const char *const Magic = "!\n"; void Archive::anchor() { } -- cgit v1.2.3