Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mgiza.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Vermeulen <jtv@precisiontranslationtools.com>2015-04-29 10:42:26 +0300
committerJeroen Vermeulen <jtv@precisiontranslationtools.com>2015-04-29 10:42:26 +0300
commit074ba10c3623bd4be7ce6d9c0f87918323dc2dd0 (patch)
tree70516d785365ce831958f1ffc643246c3ece35fc
parent97d1bed7d1b87b487ded268129a4729a04c4c2d0 (diff)
Use slashes in include paths, even on Windows.
This is the standard path separator for #include. Windows compilers will accept slashes, but non-Windows compilers generally won't accept backslashes. (The platform on which the compiler runs is not necessarily the same as the platform for which code is being compiled.)
-rw-r--r--mgizapp/src/mkcls/KategProblemKBC.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mgizapp/src/mkcls/KategProblemKBC.cpp b/mgizapp/src/mkcls/KategProblemKBC.cpp
index 10a10d9..a416bd9 100644
--- a/mgizapp/src/mkcls/KategProblemKBC.cpp
+++ b/mgizapp/src/mkcls/KategProblemKBC.cpp
@@ -29,7 +29,7 @@ USA.
#include "KategProblem.h"
#ifdef WIN32
-#include <boost\math\special_functions\erf.hpp>
+#include <boost/math/special_functions/erf.hpp>
using namespace boost::math;
#endif