From: <ibr...@us...> - 2014-11-28 09:56:10
|
Revision: 5175 http://sourceforge.net/p/tora/code/5175 Author: ibre5041 Date: 2014-11-28 09:56:02 +0000 (Fri, 28 Nov 2014) Log Message: ----------- Fix for bug reported by Petr. The iterator in fact must be bi-directional. Curiously this faulty code worked till boost version 1.55. Since version 1.57 it won't compile (which is expected behavior). Modified Paths: -------------- trunk/tora/src/parsing/tsqllexer.h Modified: trunk/tora/src/parsing/tsqllexer.h =================================================================== --- trunk/tora/src/parsing/tsqllexer.h 2014-11-26 18:52:46 UTC (rev 5174) +++ trunk/tora/src/parsing/tsqllexer.h 2014-11-28 09:56:02 UTC (rev 5175) @@ -136,7 +136,7 @@ < token_const_iterator , Token const - , boost::forward_traversal_tag + , boost::bidirectional_traversal_tag > { public: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |