diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/apache/log | 2 | ||||
-rw-r--r-- | web/module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/web/apache/log b/web/apache/log index 8464763..0e39420 100644 --- a/web/apache/log +++ b/web/apache/log @@ -27,7 +27,7 @@ namespace web write (int level, const char* msg) {write (nullptr, 0, level, msg);} void - write (const char* file, uint64_t line, int level, const char* msg); + write (const char* file, std::uint64_t line, int level, const char* msg); private: // ... @@ -24,7 +24,7 @@ namespace web // // @@ Define some commonly used constants? // - using status_code = uint16_t; + using status_code = std::uint16_t; struct name_value { |