From 22bd580ce7d862ed89dd7e69649bf6e345731c99 Mon Sep 17 00:00:00 2001 From: Bryan Dallas Date: Tue, 1 Sep 2015 11:30:19 -0400 Subject: [PATCH] Fixed missing std:: errors --- include/redox/client.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/redox/client.hpp b/include/redox/client.hpp index 6bfca27..f8f670d 100644 --- a/include/redox/client.hpp +++ b/include/redox/client.hpp @@ -394,7 +394,7 @@ Command &Redox::createCommand(const std::vector &cmd, const std::function &)> &callback, double repeat, double after, bool free_memory) { { - unique_lock ul(running_lock_); + std::unique_lock ul(running_lock_); if (!running_) { throw std::runtime_error("[ERROR] Need to connect Redox before running commands!"); } -- libgit2 0.21.4