From Mikhail Izmestev, "This patch fixes operator >> used with std::istream without std::ios::skipws flag. This allow using boost::lexical_cast with osg vectors types, because boost's lexical_cast disable std::ios::skipws flag of std::istream before using operator >>.

"
This commit is contained in:
Robert Osfield
2010-09-24 14:38:01 +00:00
parent 1224836664
commit eb3d76f291
3 changed files with 40 additions and 19 deletions

View File

@@ -20,8 +20,8 @@ extern "C" {
#define OPENSCENEGRAPH_MAJOR_VERSION 2
#define OPENSCENEGRAPH_MINOR_VERSION 9
#define OPENSCENEGRAPH_PATCH_VERSION 9
#define OPENSCENEGRAPH_SOVERSION 66
#define OPENSCENEGRAPH_PATCH_VERSION 10
#define OPENSCENEGRAPH_SOVERSION 67
/* Convenience macro that can be used to decide whether a feature is present or not i.e.
* #if OSG_MIN_VERSION_REQUIRED(2,9,5)