summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2014-04-01 22:26:00 -0700
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-02 18:01:11 +0200
commit252bbcca056001eb48fb967bb150846124710ca6 (patch)
tree6c505c6f60cfd29902fc3635731d30cd22c7fd09
parentf9da390c204cb7e7426e181aa27736d1ed22fd08 (diff)
downloadqtwebkit-252bbcca056001eb48fb967bb150846124710ca6.tar.gz
Fix compilation: missing typedef for uint32_t
status.cc:12:3: error: ‘uint32_t’ was not declared in this scope Change-Id: Id6ea656937f8db39976603a504bcdd0c7559e488 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@digia.com>
-rw-r--r--Source/ThirdParty/leveldb/util/status.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/ThirdParty/leveldb/util/status.cc b/Source/ThirdParty/leveldb/util/status.cc
index a44f35b31..bbb3540a3 100644
--- a/Source/ThirdParty/leveldb/util/status.cc
+++ b/Source/ThirdParty/leveldb/util/status.cc
@@ -3,6 +3,7 @@
// found in the LICENSE file. See the AUTHORS file for names of contributors.
#include <stdio.h>
+#include <stdint.h> // C99 header, available as an extension in C++98
#include "port/port.h"
#include "leveldb/status.h"