summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJosh Blum2013-07-13 14:25:58 -0700
committerJosh Blum2013-07-13 14:25:58 -0700
commit9f1d8e892035a2e26cb2d06407722c0a7773e997 (patch)
tree55e91c92ace5e6d0719b5c2f9be3668a2ef708b5 /include
parent15dc0eaa715f41c3ebc05ce7b455e129218148a9 (diff)
downloadsandhi-9f1d8e892035a2e26cb2d06407722c0a7773e997.tar.gz
sandhi-9f1d8e892035a2e26cb2d06407722c0a7773e997.tar.bz2
sandhi-9f1d8e892035a2e26cb2d06407722c0a7773e997.zip
gras: minor tweaks to callable + gen script
Diffstat (limited to 'include')
-rw-r--r--include/gras/callable.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/gras/callable.hpp b/include/gras/callable.hpp
index b5003c1..fa07689 100644
--- a/include/gras/callable.hpp
+++ b/include/gras/callable.hpp
@@ -3,6 +3,11 @@
#ifndef INCLUDED_GRAS_CALLABLE_HPP
#define INCLUDED_GRAS_CALLABLE_HPP
+#ifdef _MSC_VER
+#pragma warning(push)
+#pragma warning (disable:4251) // needs to have dll interface
+#endif //_MSC_VER
+
#include <gras/gras.hpp>
#include <PMC/PMC.hpp>
#include <boost/shared_ptr.hpp>
@@ -207,4 +212,8 @@ private:
#include <gras/detail/callable.hpp>
+#ifdef _MSC_VER
+#pragma warning(pop)
+#endif //_MSC_VER
+
#endif /*INCLUDED_GRAS_CALLABLE_HPP*/