24 lines
626 B
Text
24 lines
626 B
Text
|
Index: include/VariantUtils.h
|
||
|
--- include/VariantUtils.h.orig
|
||
|
+++ include/VariantUtils.h
|
||
|
@@ -8,6 +8,7 @@
|
||
|
#define VARIANTUTILS_H
|
||
|
|
||
|
#include <boost/any.hpp>
|
||
|
+#include <boost/version.hpp>
|
||
|
#include "Lucene.h"
|
||
|
#include "MiscUtils.h"
|
||
|
|
||
|
@@ -22,7 +23,11 @@ class LPPAPI VariantUtils { (public)
|
||
|
|
||
|
template <typename TYPE, typename VAR>
|
||
|
static TYPE get(VAR var) {
|
||
|
+#if BOOST_VERSION < 105800
|
||
|
return var.type() == typeid(TYPE) ? boost::get<TYPE>(var) : TYPE();
|
||
|
+#else
|
||
|
+ return var.type() == typeid(TYPE) ? boost::relaxed_get<TYPE>(var) : TYPE();
|
||
|
+#endif
|
||
|
}
|
||
|
|
||
|
template <typename TYPE, typename VAR>
|