diff options
Diffstat (limited to 'third_party/re2/util/test.cc')
-rw-r--r-- | third_party/re2/util/test.cc | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/third_party/re2/util/test.cc b/third_party/re2/util/test.cc index 2fe1bfa..b0167e7 100644 --- a/third_party/re2/util/test.cc +++ b/third_party/re2/util/test.cc @@ -3,7 +3,7 @@ // license that can be found in the LICENSE file. #include <stdio.h> -#ifndef WIN32 +#ifndef _WIN32 #include <sys/resource.h> #endif #include "util/test.h" @@ -23,18 +23,6 @@ void RegisterTest(void (*fn)(void), const char *name) { tests[ntests++].name = name; } -namespace re2 { -int64 VirtualProcessSize() { -#ifndef WIN32 - struct rusage ru; - getrusage(RUSAGE_SELF, &ru); - return (int64)ru.ru_maxrss*1024; -#else - return 0; -#endif -} -} // namespace re2 - int main(int argc, char **argv) { for (int i = 0; i < ntests; i++) { printf("%s\n", tests[i].name); |