Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.

Commit 7c89e0d

Browse files
committed
fix issues with travis build
1 parent 651a5b9 commit 7c89e0d

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

contrib/test/FirebaseArduino_test.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
#include "FirebaseObject.h"
1818
#include "gtest/gtest.h"
19-
#include "WString.h"
19+
2020

2121
TEST(FirebaseObjectTest, GetBool) {
2222
FirebaseObject obj("true");

src/FirebaseObject.h

+6-2
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,18 @@
1717
#ifndef FIREBASE_OBJECT_H
1818
#define FIREBASE_OBJECT_H
1919

20-
#include <ArduinoJson.h>
20+
21+
#include "WString.h"
2122
#include <memory>
2223

24+
#include <ArduinoJson.h>
25+
26+
2327
#ifndef FIREBASE_JSONBUFFER_SIZE
2428
#define FIREBASE_JSONBUFFER_SIZE JSON_OBJECT_SIZE(32)
2529
#endif // FIREBASE_JSONBUFFER_SIZE
2630

27-
using std::shared_ptr;
31+
2832

2933
/**
3034
* Represents value stored in firebase, may be a singular value (leaf node) or

0 commit comments

Comments
 (0)