diff --git a/include/chaiscript/dispatchkit/bootstrap_stl.hpp b/include/chaiscript/dispatchkit/bootstrap_stl.hpp index 26572c0..06f3ce7 100644 --- a/include/chaiscript/dispatchkit/bootstrap_stl.hpp +++ b/include/chaiscript/dispatchkit/bootstrap_stl.hpp @@ -127,7 +127,7 @@ namespace chaiscript * http://www.sgi.com/tech/stl/RandomAccessContainer.html */ template - ModulePtr random_access_container_type(const std::string &type, ModulePtr m = ModulePtr(new Module())) + ModulePtr random_access_container_type(const std::string &/*type*/, ModulePtr m = ModulePtr(new Module())) { typedef typename ContainerType::reference(ContainerType::*indexoper)(size_t); @@ -156,7 +156,7 @@ namespace chaiscript * http://www.sgi.com/tech/stl/Container.html */ template - ModulePtr container_type(const std::string &type, ModulePtr m = ModulePtr(new Module())) + ModulePtr container_type(const std::string &/*type*/, ModulePtr m = ModulePtr(new Module())) { m->add(fun(&ContainerType::size), "size"); m->add(fun(&ContainerType::empty), "empty"); @@ -217,7 +217,7 @@ namespace chaiscript * http://www.sgi.com/tech/stl/Sequence.html */ template - ModulePtr sequence_type(const std::string &type, ModulePtr m = ModulePtr(new Module())) + ModulePtr sequence_type(const std::string &/*type*/, ModulePtr m = ModulePtr(new Module())) { std::string insert_name; if (typeid(typename ContainerType::value_type) == typeid(Boxed_Value)) @@ -238,7 +238,7 @@ namespace chaiscript * http://www.sgi.com/tech/stl/BackInsertionSequence.html */ template - ModulePtr back_insertion_sequence_type(const std::string &type, ModulePtr m = ModulePtr(new Module())) + ModulePtr back_insertion_sequence_type(const std::string &/*type*/, ModulePtr m = ModulePtr(new Module())) { typedef typename ContainerType::reference (ContainerType::*backptr)(); @@ -317,7 +317,7 @@ namespace chaiscript * http://www.sgi.com/tech/stl/UniqueAssociativeContainer.html */ template - ModulePtr unique_associative_container_type(const std::string &type, ModulePtr m = ModulePtr(new Module())) + ModulePtr unique_associative_container_type(const std::string &/*type*/, ModulePtr m = ModulePtr(new Module())) { m->add(fun(&ContainerType::count), "count"); diff --git a/include/chaiscript/dispatchkit/boxed_value.hpp b/include/chaiscript/dispatchkit/boxed_value.hpp index 1ae0dc0..9e7ab7f 100644 --- a/include/chaiscript/dispatchkit/boxed_value.hpp +++ b/include/chaiscript/dispatchkit/boxed_value.hpp @@ -785,7 +785,7 @@ namespace chaiscript return Boxed_Value(i % r.i); } - throw bad_boxed_cast("\% only valid for integer types"); + throw bad_boxed_cast("% only valid for integer types"); } Boxed_Value operator>>(const Boxed_POD_Value &r) const diff --git a/msvc/chaiscript/Boost.vsprops b/msvc/chaiscript/Boost.vsprops index 169a7f9..aa7c744 100644 --- a/msvc/chaiscript/Boost.vsprops +++ b/msvc/chaiscript/Boost.vsprops @@ -14,6 +14,6 @@ /> diff --git a/msvc/chaiscript/chaiscript.vcproj b/msvc/chaiscript/chaiscript.vcproj index 39358d4..d92320b 100644 --- a/msvc/chaiscript/chaiscript.vcproj +++ b/msvc/chaiscript/chaiscript.vcproj @@ -189,6 +189,10 @@ Filter="h;hpp;hxx;hm;inl;inc;xsd" UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}" > + + @@ -245,6 +249,10 @@ RelativePath="..\..\include\chaiscript\dispatchkit\handle_return.hpp" > + +