From a5c8b543400b512822066c183875ab3e91360007 Mon Sep 17 00:00:00 2001 From: Andrew Kryczka Date: Thu, 23 Mar 2017 19:20:04 -0700 Subject: [PATCH] fix a header include Summary: need to consistently include "rocksdb/persistent_cache.h" to fix internal build Closes https://github.com/facebook/rocksdb/pull/2034 Differential Revision: D4768101 Pulled By: ajkr fbshipit-source-id: 2ecb07f --- table/persistent_cache_options.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/table/persistent_cache_options.h b/table/persistent_cache_options.h index c0873921c..f05f4805c 100644 --- a/table/persistent_cache_options.h +++ b/table/persistent_cache_options.h @@ -6,7 +6,7 @@ #include -#include "include/rocksdb/persistent_cache.h" +#include "rocksdb/persistent_cache.h" #include "util/statistics.h" namespace rocksdb {