summaryrefslogtreecommitdiff
path: root/db/skiplist.h
diff options
context:
space:
mode:
Diffstat (limited to 'db/skiplist.h')
-rw-r--r--db/skiplist.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/skiplist.h b/db/skiplist.h
index af85be6..ed8b092 100644
--- a/db/skiplist.h
+++ b/db/skiplist.h
@@ -1,3 +1,6 @@
+#ifndef STORAGE_LEVELDB_DB_SKIPLIST_H_
+#define STORAGE_LEVELDB_DB_SKIPLIST_H_
+
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. See the AUTHORS file for names of contributors.
@@ -377,3 +380,5 @@ bool SkipList<Key,Comparator>::Contains(const Key& key) const {
}
} // namespace leveldb
+
+#endif // STORAGE_LEVELDB_DB_SKIPLIST_H_