summaryrefslogtreecommitdiff
path: root/src/io
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2014-03-24 21:33:36 -0700
committerBen Longbons <b.r.longbons@gmail.com>2014-03-24 21:33:36 -0700
commit380bc1de6fe3f8ff5ad576938edc946e7125ed70 (patch)
tree9ef7d69608d98888eb0af712ce870cee6783a462 /src/io
parent61a7b2f2fd221386d680329b358a0cadd9e60986 (diff)
downloadtmwa-380bc1de6fe3f8ff5ad576938edc946e7125ed70.tar.gz
tmwa-380bc1de6fe3f8ff5ad576938edc946e7125ed70.tar.bz2
tmwa-380bc1de6fe3f8ff5ad576938edc946e7125ed70.tar.xz
tmwa-380bc1de6fe3f8ff5ad576938edc946e7125ed70.zip
Hopefully fix the build
Diffstat (limited to 'src/io')
-rw-r--r--src/io/cxxstdio.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/io/cxxstdio.hpp b/src/io/cxxstdio.hpp
index 0324ebc..9edeebb 100644
--- a/src/io/cxxstdio.hpp
+++ b/src/io/cxxstdio.hpp
@@ -60,7 +60,7 @@ namespace cxxstdio
template<class T>
inline __attribute__((format(printf, 2, 3)))
- int do_print(T&& t, const char *fmt, ...) throw()
+ int do_print(T&& t, const char *fmt, ...)
{
int rv;
va_list ap;
@@ -72,7 +72,7 @@ namespace cxxstdio
template<class T>
inline __attribute__((format(scanf, 2, 3)))
- int do_scan(T&& t, const char *fmt, ...) throw()
+ int do_scan(T&& t, const char *fmt, ...)
{
int rv;
va_list ap;