summaryrefslogtreecommitdiff
path: root/src/fs
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2020-03-12 16:31:17 -0700
committerRosen Penev <rosenp@gmail.com>2020-03-12 19:03:12 -0700
commitc846ee0d1b603e141fc536078b920caedae3bf6f (patch)
tree0ef1e8e597ed8c33a897fe1023c0c05618a60489 /src/fs
parent69a51e12c98af064012bc37716cabd77366d6a83 (diff)
replace stdarg.h with cstdarg
The former was deprecated in C++14. The Standard says they are the same: The contents of the header<cstdarg>are the same as the C standard library header<stdarg.h>, with the following changes: The restrictions that ISO C places on the second parameter to the va_start macro in header<stdarg.h> are different in this International Standard. The parameter parmN is the rightmost parameter in the variable parameter list of the function definition (the one just before the...).219If the parameter parmN is a pack expansion (17.5.3) or an entity resulting from a lambda capture (8.1.5), the program is ill-formed, no diagnostic required. If the parameter parmN is of a reference type, or of a type that is not compatible with the type that results when passing an argument for which there is no parameter, the behavior is undefined. Also changed va_list to the std:: namespace version, which is the same. Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'src/fs')
-rw-r--r--src/fs/io/BufferedOutputStream.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/fs/io/BufferedOutputStream.cxx b/src/fs/io/BufferedOutputStream.cxx
index 46249de0a..eb0d2d804 100644
--- a/src/fs/io/BufferedOutputStream.cxx
+++ b/src/fs/io/BufferedOutputStream.cxx
@@ -30,7 +30,8 @@
#include "BufferedOutputStream.hxx"
#include "OutputStream.hxx"
-#include <stdarg.h>
+#include <cstdarg>
+
#include <string.h>
#include <stdio.h>
@@ -85,7 +86,7 @@ BufferedOutputStream::Format(const char *fmt, ...)
}
/* format into the buffer */
- va_list ap;
+ std::va_list ap;
va_start(ap, fmt);
size_t size = vsnprintf(r.data, r.size, fmt, ap);
va_end(ap);