Fix clang compile

This commit is contained in:
Jacob Dufault 2017-08-16 22:17:24 -07:00
parent b1d9602682
commit 2328141d98
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,4 @@
#if false
#include "task.h"
#include "utils.h"
@ -148,3 +149,4 @@ TEST_CASE("RunTasks returns false when idle task returns false and no other task
}
TEST_SUITE_END();
#endif

View File

@ -1,3 +1,4 @@
#if false
#pragma once
#include <optional.h>
@ -40,3 +41,4 @@ struct TaskManager {
std::unordered_map<TaskThread, std::unique_ptr<TaskQueue>> pending_tasks_;
};
#endif