[AVR] Add ELF constants to headers
[oota-llvm.git] / include / llvm / Support / Casting.h
index e84676abc7795f82e9eaaac75e092d457fcb8e03..6ba5efa4755498195c6a056314887d6b4e9e5d12 100644 (file)
@@ -321,6 +321,6 @@ dyn_cast_or_null(Y *Val) {
   return (Val && isa<X>(Val)) ? cast<X>(Val) : nullptr;
 }
 
-} // namespace llvm
+} // End llvm namespace
 
 #endif