diff options
author | 2011-02-21 16:41:57 +0000 | |
---|---|---|
committer | 2011-02-21 16:41:57 +0000 | |
commit | 6319f1e7cac9aac93c066f0b1318d71489987cf8 (patch) | |
tree | 88642cc0777e2d171adb2c922ed8cc408f152b2c /ruby | |
parent | 5ffbc8d7c2c91e214417fb3a686584d1bbfa01c5 (diff) | |
download | paludis-6319f1e7cac9aac93c066f0b1318d71489987cf8.tar.gz paludis-6319f1e7cac9aac93c066f0b1318d71489987cf8.tar.xz |
Remove simple_ from visitor
Diffstat (limited to 'ruby')
-rw-r--r-- | ruby/metadata_key.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ruby/metadata_key.cc b/ruby/metadata_key.cc index 874521215..aeca66bb4 100644 --- a/ruby/metadata_key.cc +++ b/ruby/metadata_key.cc @@ -2,7 +2,7 @@ /* * Copyright (c) 2007, 2008 Richard Brown - * Copyright (c) 2007, 2008, 2009, 2010 Ciaran McCreesh + * Copyright (c) 2007, 2008, 2009, 2010, 2011 Ciaran McCreesh * * This file is part of the Paludis package manager. Paludis is free software; * you can redistribute it and/or modify it under the terms of the GNU General @@ -25,7 +25,7 @@ #include <paludis/mask.hh> #include <paludis/util/set.hh> #include <paludis/util/sequence.hh> -#include <paludis/util/simple_visitor_cast.hh> +#include <paludis/util/visitor_cast.hh> #include <paludis/util/timestamp.hh> #include <ruby.h> @@ -608,7 +608,7 @@ namespace { std::shared_ptr<const MetadataKey> * self_ptr; Data_Get_Struct(self, std::shared_ptr<const MetadataKey>, self_ptr); - const MetadataSpecTreeKey<DependencySpecTree> * real_self(simple_visitor_cast< + const MetadataSpecTreeKey<DependencySpecTree> * real_self(visitor_cast< const MetadataSpecTreeKey<DependencySpecTree> >(**self_ptr)); VALUE result(rb_ary_new()); |