diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-10 16:29:15 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-04-10 16:29:15 +0200 |
commit | d5a8c51d4010285be02f3252520300a737799872 (patch) | |
tree | 50c1ea90ce3d7a23c6c8400b4d982aa158485a5f /web | |
parent | 2d89c9d6aa0f2fcdd6403c4973f7e7005a6796a0 (diff) |
Add diagnostics support
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 { |