summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--kdbg/testprogs/std.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kdbg/testprogs/std.cpp b/kdbg/testprogs/std.cpp
index af37a3a..f1865a9 100644
--- a/kdbg/testprogs/std.cpp
+++ b/kdbg/testprogs/std.cpp
@@ -13,7 +13,7 @@ struct V : std::vector<T>
V(const T& v) : std::vector<T>(10, v) {}
void anotherone(const T& v)
{
- push_back(v);
+ this->push_back(v);
}
};