changeset 6690:fbaeecf381f6

8057129, PR3702: Fix AIX build after the Extend CompileCommand=option change 8055286 Reviewed-by: kvn
author simonis
date Wed, 03 Sep 2014 14:39:13 +0200
parents b5f3f133db56
children 64a47bb28534
files src/share/vm/compiler/compilerOracle.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/vm/compiler/compilerOracle.cpp	Tue Sep 02 10:26:48 2014 -0700
+++ b/src/share/vm/compiler/compilerOracle.cpp	Wed Sep 03 14:39:13 2014 +0200
@@ -388,7 +388,7 @@
 
 template<typename T>
 bool CompilerOracle::has_option_value(methodHandle method, const char* option, T& value) {
-  return get_option_value(method, option, value);
+  return ::get_option_value(method, option, value);
 }
 
 // Explicit instantiation for all OptionTypes supported.