diff options
| author | Alexey Samsonov <samsonov@google.com> | 2013-03-14 11:29:06 +0000 |
|---|---|---|
| committer | Alexey Samsonov <samsonov@google.com> | 2013-03-14 11:29:06 +0000 |
| commit | 7d2385419a37f039e14f7ca71e9a5596e000199f (patch) | |
| tree | 9f6b40961c94afbcf7e473a73887aed4787edd74 | |
| parent | 5aa9d793c5a878bab4552fa24b11f742404b4272 (diff) | |
| download | bcm5719-llvm-7d2385419a37f039e14f7ca71e9a5596e000199f.tar.gz bcm5719-llvm-7d2385419a37f039e14f7ca71e9a5596e000199f.zip | |
[Sanitizer] fix compilation for Windows
llvm-svn: 177054
| -rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_win.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_win.cc b/compiler-rt/lib/sanitizer_common/sanitizer_win.cc index c6573419b3e..614c420d074 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_win.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_win.cc @@ -111,8 +111,8 @@ void *MapFileToMemory(const char *file_name, uptr *buff_size) { UNIMPLEMENTED(); } -static const kMaxEnvNameLength = 128; -static const kMaxEnvValueLength = 32767; +static const int kMaxEnvNameLength = 128; +static const int kMaxEnvValueLength = 32767; namespace { |

