[llvm] r208681 - include/llvm/Support/Unicode.h didn't have re-include guards
Artyom Skrobov
Artyom.Skrobov at arm.com
Tue May 13 03:11:29 PDT 2014
Author: askrobov
Date: Tue May 13 05:11:29 2014
New Revision: 208681
URL: http://llvm.org/viewvc/llvm-project?rev=208681&view=rev
Log:
include/llvm/Support/Unicode.h didn't have re-include guards
Modified:
llvm/trunk/include/llvm/Support/Unicode.h
Modified: llvm/trunk/include/llvm/Support/Unicode.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Unicode.h?rev=208681&r1=208680&r2=208681&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Unicode.h (original)
+++ llvm/trunk/include/llvm/Support/Unicode.h Tue May 13 05:11:29 2014
@@ -12,6 +12,9 @@
//
//===----------------------------------------------------------------------===//
+#ifndef LLVM_SUPPORT_UNICODE_H
+#define LLVM_SUPPORT_UNICODE_H
+
#include "llvm/ADT/StringRef.h"
namespace llvm {
@@ -60,3 +63,5 @@ int columnWidthUTF8(StringRef Text);
} // namespace unicode
} // namespace sys
} // namespace llvm
+
+#endif
More information about the llvm-commits
mailing list