aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/core/test
diff options
context:
space:
mode:
authorGravatar Gil <mcg@google.com>2018-07-11 19:21:48 -0700
committerGravatar GitHub <noreply@github.com>2018-07-11 19:21:48 -0700
commit09c75c4fb8269d74ccfdfaccb36ea9f7519efdb5 (patch)
tree529ef668b3bea1870e2f8305e848ef3dda9f5801 /Firestore/core/test
parent82ef0886bf89339bfe7a1855e697e61959eeb486 (diff)
Fix Firestore when compiled with Xcode 8.3 (#1519)
* Add a travis stage that tests building Firestore with Xcode 8.3. * Simulate on a device available in Xcode 8 * Fix compile errors under Xcode 8.3.3 * Remove Firestore_SwiftTests_iOS from the Firestore_Tests_iOS Scheme I'll create a new target for this but in another PR. * Add an entry to CHANGELOG.md
Diffstat (limited to 'Firestore/core/test')
-rw-r--r--Firestore/core/test/firebase/firestore/remote/serializer_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Firestore/core/test/firebase/firestore/remote/serializer_test.cc b/Firestore/core/test/firebase/firestore/remote/serializer_test.cc
index fb08488..4e7b7c9 100644
--- a/Firestore/core/test/firebase/firestore/remote/serializer_test.cc
+++ b/Firestore/core/test/firebase/firestore/remote/serializer_test.cc
@@ -161,7 +161,7 @@ class SerializerTest : public ::testing::Test {
EXPECT_EQ(status.code(), bad_status.status().code());
}
- v1beta1::Value ValueProto(nullptr_t) {
+ v1beta1::Value ValueProto(std::nullptr_t) {
std::vector<uint8_t> bytes =
EncodeFieldValue(&serializer, FieldValue::NullValue());
v1beta1::Value proto;