summaryrefslogtreecommitdiff
path: root/src/io/cxxstdio.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/io/cxxstdio.hpp')
-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;