We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18da0b1 commit 740fa25Copy full SHA for 740fa25
src/goto-cc/cl_message_handler.cpp
@@ -42,7 +42,7 @@ void cl_message_handlert::print(
42
43
if(full_path.has_value() && !line.empty())
44
{
45
-#ifdef _WIN32
+#ifdef _MSC_VER
46
std::ifstream in(widen(full_path.value()));
47
#else
48
std::ifstream in(full_path.value());
src/goto-cc/gcc_message_handler.cpp
@@ -66,7 +66,7 @@ void gcc_message_handlert::print(
66
const auto file_name = location.full_path();
67
if(file_name.has_value() && !line.empty())
68
69
70
std::ifstream in(widen(file_name.value()));
71
72
std::ifstream in(file_name.value());
0 commit comments