From 9e9a83baf77a204650091a0c80b5e33d3794035e Mon Sep 17 00:00:00 2001 From: fyrz Date: Tue, 18 Nov 2014 22:21:02 +0100 Subject: [PATCH] Missing header in build on CentOS While building RocksJava the build fails on CentOS because of the missing stdexcept header. --- util/options_helper.h | 1 + 1 file changed, 1 insertion(+) diff --git a/util/options_helper.h b/util/options_helper.h index 62373b2d5..02c788114 100644 --- a/util/options_helper.h +++ b/util/options_helper.h @@ -6,6 +6,7 @@ #pragma once #include +#include #include "util/mutable_cf_options.h" #include "rocksdb/status.h"