Skip to content

Instantly share code, notes, and snippets.

@nqn
Created December 2, 2013 17:49
Show Gist options
  • Save nqn/7753449 to your computer and use it in GitHub Desktop.
Save nqn/7753449 to your computer and use it in GitHub Desktop.
diff --git a/3rdparty/libprocess/3rdparty/stout/include/stout/set.hpp b/3rdparty/libprocess/3rdparty/stout/include/stout/set.hpp
index f5caa99..d48a189 100644
--- a/3rdparty/libprocess/3rdparty/stout/include/stout/set.hpp
+++ b/3rdparty/libprocess/3rdparty/stout/include/stout/set.hpp
@@ -10,28 +10,28 @@ public:
Set(const T& t1)
{
- insert(t1);
+ this->insert(t1);
}
Set(const T& t1, const T& t2)
{
- insert(t1);
- insert(t2);
+ this->insert(t1);
+ this->insert(t2);
}
Set(const T& t1, const T& t2, const T& t3)
{
- insert(t1);
- insert(t2);
- insert(t3);
+ this->insert(t1);
+ this->insert(t2);
+ this->insert(t3);
}
Set(const T& t1, const T& t2, const T& t3, const T& t4)
{
- insert(t1);
- insert(t2);
- insert(t3);
- insert(t4);
+ this->insert(t1);
+ this->insert(t2);
+ this->insert(t3);
+ this->insert(t4);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment