-
Notifications
You must be signed in to change notification settings - Fork 123
Standardize header guards #518
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
❌ Integration test FAILEDRequested by @jonsimantov on commit 7843318
|
#ifndef FIREBASE_APP_CLIENT_CPP_SRC_INCLUDE_FIREBASE_APP_H_ | ||
#define FIREBASE_APP_CLIENT_CPP_SRC_INCLUDE_FIREBASE_APP_H_ | ||
#ifndef FIREBASE_APP_SRC_INCLUDE_FIREBASE_APP_H_ | ||
#define FIREBASE_APP_SRC_INCLUDE_FIREBASE_APP_H_ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 Documentation issue: warning: argument 'confirg' of command @param is not found in the argument list of firebase::AppOptions::LoadFromJsonConfig(const char *config, AppOptions *options=nullptr)
#ifndef FIREBASE_APP_CLIENT_CPP_SRC_INCLUDE_FIREBASE_APP_H_ | ||
#define FIREBASE_APP_CLIENT_CPP_SRC_INCLUDE_FIREBASE_APP_H_ | ||
#ifndef FIREBASE_APP_SRC_INCLUDE_FIREBASE_APP_H_ | ||
#define FIREBASE_APP_SRC_INCLUDE_FIREBASE_APP_H_ | ||
|
||
#include "firebase/internal/platform.h" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📝 Documentation issue: [8 lines down] warning: The following parameter of firebase::AppOptions::LoadFromJsonConfig(const char *config, AppOptions *options=nullptr) is not documented:
parameter 'config'
Standardize header guards, and turn on lint warnings for bad header guard names and line length, which were previously disabled. Includes a small fix to replace " with " in the lint output, for HTML compatibility.
This also turns off the "include subdirectory" and "whitespace/indent" lint warnings as they are extraneous.