From 228231d9146cc298753f53fb762c583449ac366f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 26 Jun 2021 18:47:08 -0600 Subject: [PATCH] window compilation fix --- libs/pbd/pbd.cc | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/libs/pbd/pbd.cc b/libs/pbd/pbd.cc index d1748cad72..67b6b2adb1 100644 --- a/libs/pbd/pbd.cc +++ b/libs/pbd/pbd.cc @@ -53,26 +53,7 @@ namespace { static bool libpbd_initialized = false; -#ifdef PLATFORM_WINDOWS -static -void -test_timers_from_env () -{ - bool set; - std::string options; - - options = Glib::getenv ("PBD_TEST_TIMERS", set); - if (set) { - if (!PBD::QPC::check_timer_valid ()) { - PBD::error << X_("Windows QPC Timer source not usable") << endmsg; - } else { - PBD::info << X_("Windows QPC Timer source usable") << endmsg; - } - } } -#endif - -} // namespace bool PBD::init () @@ -98,9 +79,6 @@ PBD::init () return false; } - QPC::initialize(); - test_timers_from_env (); - if (!PBD::MMCSS::initialize()) { PBD::info << X_("Unable to initialize MMCSS") << endmsg; } else {