mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-21 06:45:39 -06:00
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:
parent
7cbd469d3f
commit
294c6a6481
3 changed files with 5 additions and 9 deletions
|
|
@ -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(); }
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue