From a15955d343fce422a06168f5bfc2882ab478b061 Mon Sep 17 00:00:00 2001
From: Andreas Schenk <andreas_schenk@hms.harvard.edu>
Date: Fri, 7 Jun 2013 18:40:11 -0400
Subject: [PATCH] fixed query ParamType to compile with double precision
 enabled

---
 modules/mol/base/src/impl/query_ast.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/mol/base/src/impl/query_ast.hh b/modules/mol/base/src/impl/query_ast.hh
index 2f46ec499..610521393 100644
--- a/modules/mol/base/src/impl/query_ast.hh
+++ b/modules/mol/base/src/impl/query_ast.hh
@@ -68,7 +68,7 @@ class DLLEXPORT_OST_MOL StringOrRegexParam {
   String s_;
 };
 
-typedef boost::variant<int, float, WithinParam, StringOrRegexParam> ParamType;
+typedef boost::variant<int, Real, WithinParam, StringOrRegexParam> ParamType;
 
 // AST node, used internally for building the AST tree.
 class DLLEXPORT_OST_MOL Node {
-- 
GitLab