From 37d1648e0c3ace7a0d40226779c69807159138a9 Mon Sep 17 00:00:00 2001 From: bsimmers Date: Tue, 29 Apr 2014 16:19:05 -0700 Subject: [PATCH] Turn on tracelet region selector by default Summary: It's ready. Reviewed By: @jdelong Differential Revision: D1302850 --- hphp/runtime/base/runtime-option.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/hphp/runtime/base/runtime-option.cpp b/hphp/runtime/base/runtime-option.cpp index 4baddc39b0c..169d47e71ff 100644 --- a/hphp/runtime/base/runtime-option.cpp +++ b/hphp/runtime/base/runtime-option.cpp @@ -372,15 +372,7 @@ bool RuntimeOption::GetServerCustomBoolSetting(const std::string &settingName, } static inline std::string regionSelectorDefault() { -#ifdef HHVM_REGION_SELECTOR_TRACELET return "tracelet"; -#else -#ifdef HHVM_REGION_SELECTOR_LEGACY - return "legacy"; -#else - return ""; -#endif -#endif } static inline bool hhirBytecodeControlFlowDefault() { -- 2.11.4.GIT