13
0

noop: fix indentation/whitespace

This commit is contained in:
Paul Davis 2015-05-13 17:32:10 -04:00
parent f34d870a2c
commit 480f1e4082
3 changed files with 7 additions and 7 deletions

View File

@ -134,7 +134,7 @@ public:
static const framepos_t Immediate = -1;
static bool has_per_thread_pool ();
static bool has_per_thread_pool ();
static void create_per_thread_pool (const std::string& n, uint32_t nitems);
static void init_event_pool ();

View File

@ -45,7 +45,7 @@ SessionEvent::init_event_pool ()
bool
SessionEvent::has_per_thread_pool ()
{
return pool->has_per_thread_pool ();
return pool->has_per_thread_pool ();
}
void

View File

@ -181,11 +181,11 @@ PerThreadPool::create_per_thread_pool (string n, unsigned long isize, unsigned l
bool
PerThreadPool::has_per_thread_pool ()
{
CrossThreadPool* p = _key.get();
if (p) {
return true;
}
return false;
CrossThreadPool* p = _key.get();
if (p) {
return true;
}
return false;
}