aboutsummaryrefslogtreecommitdiffstats
path: root/vsm
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2021-01-04 10:57:55 +0100
committerTor Egge <Tor.Egge@broadpark.no>2021-01-04 10:57:55 +0100
commitdf1f7ded86ee60a4689ebbeeaa0245c2dee20475 (patch)
tree13a641bace8933f924cc435f8304974f75500922 /vsm
parent1c4d7f8105ec86df94bb435b9a31801b0ed921fa (diff)
Remove unneeded constructor template arguments.
Diffstat (limited to 'vsm')
-rw-r--r--vsm/src/tests/searcher/searcher_test.cpp2
-rw-r--r--vsm/src/tests/textutil/textutil.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/vsm/src/tests/searcher/searcher_test.cpp b/vsm/src/tests/searcher/searcher_test.cpp
index a31f5451e89..87bbefa6c06 100644
--- a/vsm/src/tests/searcher/searcher_test.cpp
+++ b/vsm/src/tests/searcher/searcher_test.cpp
@@ -27,7 +27,7 @@ template <typename T>
class Vector : public std::vector<T>
{
public:
- Vector<T>() : std::vector<T>() {}
+ Vector() : std::vector<T>() {}
Vector<T> & add(T v) { this->push_back(v); return *this; }
};
diff --git a/vsm/src/tests/textutil/textutil.cpp b/vsm/src/tests/textutil/textutil.cpp
index 581419fc80e..42857b8430d 100644
--- a/vsm/src/tests/textutil/textutil.cpp
+++ b/vsm/src/tests/textutil/textutil.cpp
@@ -15,7 +15,7 @@ template <typename T>
class Vector : public std::vector<T>
{
public:
- Vector<T>() : std::vector<T>() {}
+ Vector() : std::vector<T>() {}
Vector<T> & a(T v) { this->push_back(v); return *this; }
};