aboutsummaryrefslogtreecommitdiffstats
path: root/vsm
diff options
context:
space:
mode:
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; }
};