diff options
author | 2013-05-16 20:03:48 +0100 | |
---|---|---|
committer | 2013-05-22 23:19:18 +0100 | |
commit | 78d9a9bf0758140e0e8c03c5e8d3288f74efbb51 (patch) | |
tree | 1c0b25ba6358e80d0fe535fb49e3cce8d243e6a3 /ruby | |
parent | 39834ca3b05fadb14f855a8ab6dcea98c35738a7 (diff) | |
download | paludis-78d9a9bf0758140e0e8c03c5e8d3288f74efbb51.tar.gz paludis-78d9a9bf0758140e0e8c03c5e8d3288f74efbb51.tar.xz |
Switch to std mutex and condition_variable
Diffstat (limited to 'ruby')
-rw-r--r-- | ruby/repository.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ruby/repository.cc b/ruby/repository.cc index a5733dab2..f32a27b18 100644 --- a/ruby/repository.cc +++ b/ruby/repository.cc @@ -1,7 +1,7 @@ /* vim: set sw=4 sts=4 et foldmethod=syntax : */ /* - * Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Ciaran McCreesh + * Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Ciaran McCreesh * Copyright (c) 2006, 2007, 2008 Richard Brown * Copyright (c) 2007 David Leverton * @@ -29,8 +29,6 @@ #include <paludis/util/wrapped_forward_iterator.hh> #include <paludis/util/set.hh> #include <paludis/util/sequence.hh> -#include <paludis/util/mutex.hh> -#include <paludis/util/condition_variable.hh> #include <paludis/util/make_named_values.hh> #include <ruby.h> #include <list> |