[Sanitizer] One more try to fix Windows build

llvm-svn: 162674
This commit is contained in:
Alexey Samsonov 2012-08-27 14:08:53 +00:00
parent e67a5dd8e1
commit 28d8be2d86
2 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@ namespace __sanitizer {
#ifdef _WIN32 #ifdef _WIN32
class MemoryMappingLayout { class MemoryMappingLayout {
public:
MemoryMappingLayout() { MemoryMappingLayout() {
UNIMPLEMENTED(); UNIMPLEMENTED();
} }

View File

@ -77,6 +77,7 @@ bool MemoryRangeIsAvailable(uptr range_start, uptr range_end) {
void *MapFileToMemory(const char *file_name, uptr *buff_size) { void *MapFileToMemory(const char *file_name, uptr *buff_size) {
UNIMPLEMENTED(); UNIMPLEMENTED();
return 0;
} }
const char *GetEnv(const char *name) { const char *GetEnv(const char *name) {