diff options
| -rw-r--r-- | llvm/include/llvm/Support/DynamicLibrary.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/DynamicLibrary.h b/llvm/include/llvm/Support/DynamicLibrary.h index 11965292dd1..288936bc0b9 100644 --- a/llvm/include/llvm/Support/DynamicLibrary.h +++ b/llvm/include/llvm/Support/DynamicLibrary.h @@ -35,7 +35,7 @@ namespace sys {      // Placeholder whose address represents an invalid library.      // We use this instead of NULL or a pointer-int pair because the OS library      // might define 0 or 1 to be "special" handles, such as "search all". -    static const char Invalid; +    static char Invalid;      // Opaque data used to interface with OS-specific dynamic library handling.      void *Data;  | 

