Commit 3254a784 authored by Philipp A. Hartmann's avatar Philipp A. Hartmann

add missing 'typename'

parent c8673ef3
...@@ -27,7 +27,7 @@ TEST(Value, assignment_operator) { ...@@ -27,7 +27,7 @@ TEST(Value, assignment_operator) {
template <typename Value> template <typename Value>
void TestCopyFrom() { void TestCopyFrom() {
Value::AllocatorType a; typename Value::AllocatorType a;
Value v1(1234); Value v1(1234);
Value v2(v1, a); // deep copy constructor Value v2(v1, a); // deep copy constructor
EXPECT_TRUE(v1.GetType() == v2.GetType()); EXPECT_TRUE(v1.GetType() == v2.GetType());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment