git.stg.codes
/
stg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
27266b5
)
Added unary versions of x2str ans unsigned2str.
author
Maxim Mamontov
<faust.madf@gmail.com>
Mon, 5 Aug 2013 17:27:29 +0000
(20:27 +0300)
committer
Maxim Mamontov
<faust.madf@gmail.com>
Mon, 5 Aug 2013 17:27:29 +0000
(20:27 +0300)
stglibs/common.lib/include/stg/common.h
patch
|
blob
|
history
diff --git
a/stglibs/common.lib/include/stg/common.h
b/stglibs/common.lib/include/stg/common.h
index 80d32aba45a45116b523e81a4340e30b16e8c3fa..eb0d14a625343b00f41bc53131fd2631d927075d 100644
(file)
--- a/
stglibs/common.lib/include/stg/common.h
+++ b/
stglibs/common.lib/include/stg/common.h
@@
-112,7
+112,11
@@
int str2x(const std::string & str, varT & x);
template <typename varT>
const std::string & x2str(varT x, std::string & s);
template <typename varT>
+const std::string & x2str(varT x) { std::string s; return x2str(x, s); }
+template <typename varT>
const std::string & unsigned2str(varT x, std::string & s);
+template <typename varT>
+const std::string & unsigned2str(varT x) { std::string s; return unsigned2str(x, s); }
//-----------------------------------------------------------------------------
template <typename varT>