RichEdit: Removed stray DDUMPs, Core/Rpc: MSC compatibility

git-svn-id: svn://ultimatepp.org/upp/trunk@6481 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2013-10-24 08:51:19 +00:00
parent 7cbd469d3f
commit 294c6a6481
3 changed files with 5 additions and 9 deletions

View file

@ -196,8 +196,11 @@ struct RpcGet {
Value v;
template <class T>
operator T() { T x; ValueGet(x, v); return x; }
operator T() const { T x; ValueGet(x, v); return x; }
template <class T>
T Get() const { T x; ValueGet(x, v); return x; } // Ugly workaround for MSC compiler bug
String ToString() const { return v.ToString(); }
};