Skip to content

Commit faa6c96

Browse files
committed
Add missing direct includes for assert, stdint, and string headers
1 parent 5db91b1 commit faa6c96

254 files changed

Lines changed: 302 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

analytics/src/analytics_desktop.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
#include <cstdint>
1516
#include <future>
1617
#include <map>
1718
#include <mutex>

analytics/src/analytics_ios.mm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
#import "FIRAnalytics+OnDevice.h"
2121
#import "FIRAnalytics.h"
2222

23+
#include <cassert>
24+
#include <cstdint>
2325
#include "analytics/src/analytics_common.h"
2426
#include "analytics/src/include/firebase/analytics.h"
2527

app/rest/controller_curl.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17+
#include <cstdint>
1718
#include "app/rest/controller_curl.h"
1819

1920
#include <utility>

app/rest/gzipheader.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
// Author: Neal Cardwell
1616
//
1717

18+
#include <cstdint>
1819
#include "app/rest/gzipheader.h"
1920

2021
#include <assert.h>

app/rest/request_json.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#ifndef FIREBASE_APP_REST_REQUEST_JSON_H_
1818
#define FIREBASE_APP_REST_REQUEST_JSON_H_
1919

20+
#include <assert.h>
2021
#include <string>
2122

2223
#include "app/rest/request.h"

app/rest/request_options.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#ifndef FIREBASE_APP_REST_REQUEST_OPTIONS_H_
1818
#define FIREBASE_APP_REST_REQUEST_OPTIONS_H_
1919

20+
#include <stdint.h>
2021
#include <map>
2122
#include <string>
2223

app/rest/response_json.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
#ifndef FIREBASE_APP_REST_RESPONSE_JSON_H_
1818
#define FIREBASE_APP_REST_RESPONSE_JSON_H_
1919

20+
#include <assert.h>
21+
#include <string.h>
2022
#include <string>
2123
#include <utility>
2224

app/rest/transport_curl.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17+
#include <cstdint>
1718
#include "app/rest/transport_curl.h"
1819

1920
#include <cassert>

app/rest/transport_mock.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17+
#include <cstring>
1718
#include "app/rest/transport_mock.h"
1819

1920
#include <string>

app/rest/zlibwrapper.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17+
#include <cstring>
1718
#include "app/rest/zlibwrapper.h"
1819

1920
#include <assert.h>

0 commit comments

Comments
 (0)