summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVictor Costan <costan@google.com>2020-04-29 22:31:41 +0000
committerVictor Costan <costan@google.com>2020-04-29 22:33:14 +0000
commita6b3a2012e9c598258a295aef74d88b796c47a2b (patch)
tree2ce49183e6a860db3e29909409ea884a4bec56d0 /include
parent3f934e3705444a3df80b128ddefc4cf440441ffe (diff)
downloadleveldb-a6b3a2012e9c598258a295aef74d88b796c47a2b.tar.gz
Add some std:: qualifiers to types and functions.
PiperOrigin-RevId: 309110431
Diffstat (limited to 'include')
-rw-r--r--include/leveldb/env.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/leveldb/env.h b/include/leveldb/env.h
index 3ef0393..e00895a 100644
--- a/include/leveldb/env.h
+++ b/include/leveldb/env.h
@@ -300,7 +300,7 @@ class LEVELDB_EXPORT Logger {
virtual ~Logger();
// Write an entry to the log file with the specified format.
- virtual void Logv(const char* format, va_list ap) = 0;
+ virtual void Logv(const char* format, std::va_list ap) = 0;
};
// Identifies a locked file.