Skip to content

Commit

Permalink
Merge pull request #1613 from cpockrandt/master
Browse files Browse the repository at this point in the history
[FIX] Temporarily changing stderr on Windows because of VS14 bug
  • Loading branch information
xenigmax committed Mar 24, 2016
2 parents 79e4d75 + 94bc77b commit 9fc8b5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion demos/tutorial/blast_io/read_assignment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ int main(int argc, char **argv)
#else
int main()
{
std::cerr << "Demo not run, because of a bug in Microsoft Visual Studio 2015.\n";
std::cerr << "USAGE: FILE_IN\n";
return 0;
}
#endif
2 changes: 1 addition & 1 deletion demos/tutorial/blast_io/write_assignment.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ int main(int argc, char ** argv)
#else
int main()
{
std::cerr << "Demo not run, because of a bug in Microsoft Visual Studio 2015.\n";
std::cerr << "USAGE: FILE_OUT\n";
return 0;
}
#endif

0 comments on commit 9fc8b5b

Please sign in to comment.