hotspot/src/share/vm/memory/universe.hpp
changeset 14076 84643cfaeaa8
parent 13753 1df4fd11c5b8
child 14077 a7060dec741b
--- a/hotspot/src/share/vm/memory/universe.hpp	Tue Oct 09 22:12:25 2012 +0200
+++ b/hotspot/src/share/vm/memory/universe.hpp	Mon Oct 15 10:02:42 2012 -0700
@@ -403,8 +403,14 @@
 
   // Debugging
   static bool verify_in_progress() { return _verify_in_progress; }
-  static void verify(bool silent = false,
-                     VerifyOption option = VerifyOption_Default );
+  static void verify(bool silent, VerifyOption option);
+  static void verify(bool silent) {
+    verify(silent, VerifyOption_Default /* option */);
+  }
+  static void verify() {
+    verify(false /* silent */);
+  }
+
   static int  verify_count()       { return _verify_count; }
   // The default behavior is to call print_on() on gclog_or_tty.
   static void print();