summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-ruby/facter/files/facter-3.5.0-collection-fix.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/dev-ruby/facter/files/facter-3.5.0-collection-fix.patch b/dev-ruby/facter/files/facter-3.5.0-collection-fix.patch
deleted file mode 100644
index edd10d2b903e..000000000000
--- a/dev-ruby/facter/files/facter-3.5.0-collection-fix.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -Naur /var/tmp/portage/dev-ruby/facter-3.5.0/work/all/facter-3.5.0.old/lib/inc/facter/facts/collection.hpp /var/tmp/portage/dev-ruby/facter-3.5.0/work/all/facter-3.5.0/lib/inc/facter/facts/collection.hpp
---- facter-3.5.0.old/lib/inc/facter/facts/collection.hpp 2016-10-21 18:32:16.000000000 -0500
-+++ facter-3.5.0/lib/inc/facter/facts/collection.hpp 2016-11-28 19:36:55.025454011 -0600
-@@ -94,7 +94,7 @@
- * for the facts they resolve
- */
- collection(std::set<std::string> const& blocklist = std::set<std::string>(),
-- std::unordered_map<std::string, int64_t> const& ttls = {});
-+ std::unordered_map<std::string, int64_t> const& ttls = std::unordered_map<std::string, int64_t>{});
-
- /**
- * Destructor for fact collection.
-diff -Naur /var/tmp/portage/dev-ruby/facter-3.5.0/work/all/facter-3.5.0.old/lib/tests/collection_fixture.hpp /var/tmp/portage/dev-ruby/facter-3.5.0/work/all/facter-3.5.0/lib/tests/collection_fixture.hpp
---- facter-3.5.0.old/lib/tests/collection_fixture.hpp 2016-10-21 18:32:16.000000000 -0500
-+++ facter-3.5.0/lib/tests/collection_fixture.hpp 2016-11-28 19:36:47.322311122 -0600
-@@ -10,7 +10,7 @@
- {
- public:
- collection_fixture(std::set<std::string> const& blocklist = std::set<std::string>(),
-- std::unordered_map<std::string, int64_t> const& ttls = {});
-+ std::unordered_map<std::string, int64_t> const& ttls = std::unordered_map<std::string, int64_t>{});
-
- protected:
- virtual std::vector<std::string> get_external_fact_directories() const override;