Added include guards to stringappend and redis-list
Summary: added "#pragma once" in the .h files Test Plan: make and run: stringappend_test, redis_test Reviewers: emayanke, haobo Reviewed By: emayanke CC: leveldb Differential Revision: https://reviews.facebook.net/D12495
This commit is contained in:
parent
74781a0c49
commit
6f4e3ee3e8
@ -4,6 +4,8 @@
|
||||
* Copyright 2013 Facebook
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "leveldb/merge_operator.h"
|
||||
#include "leveldb/slice.h"
|
||||
|
||||
|
@ -10,6 +10,8 @@
|
||||
* Copyright 2013 Facebook
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "leveldb/merge_operator.h"
|
||||
#include "leveldb/slice.h"
|
||||
|
||||
|
@ -37,6 +37,8 @@
|
||||
* Copyright 2013 Facebook
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "redis_list_exception.h"
|
||||
|
@ -8,6 +8,8 @@
|
||||
* Copyright 2013 Facebook
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include "leveldb/db.h"
|
||||
#include "redis_list_iterator.h"
|
||||
|
Loading…
Reference in New Issue
Block a user