summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorChris Mumford <cmumford@chromium.org>2015-08-11 15:27:47 -0700
committerChris Mumford <cmumford@chromium.org>2015-12-09 10:34:57 -0800
commitb9afa1f2e79e928e08f11e907e8688b6d89cfd2f (patch)
tree39745d5d04c1663684a5a8092dba3fc0efeb5b37 /doc
parent65190ac48b614b4bd2f3d5d173cf8fdbb2c0fc1a (diff)
downloadleveldb-b9afa1f2e79e928e08f11e907e8688b6d89cfd2f.tar.gz
include <assert> -> <cassert>
Fixes reported public issue #280.
Diffstat (limited to 'doc')
-rw-r--r--doc/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/index.html b/doc/index.html
index 3ed0ed9..2155192 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -22,7 +22,7 @@ directory. The following example shows how to open a database,
creating it if necessary:
<p>
<pre>
- #include &lt;assert&gt;
+ #include &lt;cassert&gt;
#include "leveldb/db.h"
leveldb::DB* db;