From: <ibr...@us...> - 2014-11-25 22:33:55
|
Revision: 5167 http://sourceforge.net/p/tora/code/5167 Author: ibre5041 Date: 2014-11-25 22:33:49 +0000 (Tue, 25 Nov 2014) Log Message: ----------- MSVC 2013 bug c++x11 - missing support for explicit conversion operators Modified Paths: -------------- trunk/tora/src/core/toqvalue.h Modified: trunk/tora/src/core/toqvalue.h =================================================================== --- trunk/tora/src/core/toqvalue.h 2014-11-24 20:03:51 UTC (rev 5166) +++ trunk/tora/src/core/toqvalue.h 2014-11-25 22:33:49 UTC (rev 5167) @@ -212,7 +212,7 @@ /** Convert value to a string. If binary convert to hex. */ - explicit operator QString() const; + /*explicit MSVC 2013 bug 811334*/ operator QString() const; QString toSIsize() const; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |