add missing 'typename'

This commit is contained in:
Philipp A. Hartmann 2014-07-03 17:13:17 +02:00
parent c8673ef3de
commit 3254a784bb

View File

@ -27,7 +27,7 @@ TEST(Value, assignment_operator) {
template <typename Value>
void TestCopyFrom() {
Value::AllocatorType a;
typename Value::AllocatorType a;
Value v1(1234);
Value v2(v1, a); // deep copy constructor
EXPECT_TRUE(v1.GetType() == v2.GetType());