From d1ce7a2839dbc3b882d9fb8fc01f69ebbfbd0cfd Mon Sep 17 00:00:00 2001 From: "kenton@google.com" Date: Mon, 21 Dec 2009 21:19:05 +0000 Subject: Fix build on MSVC. --- src/google/protobuf/compiler/test_plugin.cc | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/google/protobuf/compiler/test_plugin.cc') diff --git a/src/google/protobuf/compiler/test_plugin.cc b/src/google/protobuf/compiler/test_plugin.cc index 75fdca0d..5cbbf3d9 100644 --- a/src/google/protobuf/compiler/test_plugin.cc +++ b/src/google/protobuf/compiler/test_plugin.cc @@ -34,11 +34,18 @@ // command_line_interface_unittest. #include +#include #include #include #include int main(int argc, char* argv[]) { +#ifdef _MSC_VER + // Don't print a silly message or stick a modal dialog box in my face, + // please. + _set_abort_behavior(0, ~0); +#endif // !_MSC_VER + google::protobuf::compiler::MockCodeGenerator generator("test_plugin"); return google::protobuf::compiler::PluginMain(argc, argv, &generator); } -- cgit v1.2.3