mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
add nolint to every include '*.h' that is added by this pr
This commit is contained in:
parent
5449e2f0df
commit
1785e39d4b
|
@ -17,7 +17,7 @@
|
|||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
|
||||
#include "../sandboxed.h"
|
||||
#include "../sandboxed.h" // NOLINT(build/include)
|
||||
#include "sandboxed_api/sandbox2/util/fileops.h"
|
||||
#include "sandboxed_api/sandbox2/util/path.h"
|
||||
#include "sandboxed_api/vars.h"
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
#include <optional>
|
||||
#include <utility>
|
||||
|
||||
#include "tiff_sapi.sapi.h"
|
||||
#include "tiff_sapi.sapi.h" // NOLINT(build/include)
|
||||
|
||||
namespace {
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#include "check_tag.h"
|
||||
#include "check_tag.h" // NOLINT(build/include)
|
||||
|
||||
void CheckShortField(TiffApi& api, sapi::v::RemotePtr& tif, const ttag_t field,
|
||||
const uint16_t value) {
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
#include <cstring>
|
||||
|
||||
#include "helper.h"
|
||||
#include "helper.h" // NOLINT(build/include)
|
||||
#include "tiffio.h" // NOLINT(build/include)
|
||||
|
||||
void CheckShortField(TiffApi&, sapi::v::RemotePtr& tif, const ttag_t field,
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
#include <cstdint>
|
||||
|
||||
#include "helper.h"
|
||||
#include "helper.h" // NOLINT(build/include)
|
||||
#include "tiffio.h" // NOLINT(build/include)
|
||||
|
||||
namespace {
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#include "helper.h"
|
||||
#include "helper.h" // NOLINT(build/include)
|
||||
|
||||
std::string GetImagesFolder() {
|
||||
std::string cwd = sandbox2::file_util::fileops::GetCWD();
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include <optional>
|
||||
#include <string>
|
||||
|
||||
#include "../sandboxed.h"
|
||||
#include "../sandboxed.h" // NOLINT(build/include)
|
||||
#include "gtest/gtest.h"
|
||||
#include "sandboxed_api/sandbox2/util/fileops.h"
|
||||
#include "sandboxed_api/sandbox2/util/path.h"
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
#include <array>
|
||||
|
||||
#include "check_tag.h"
|
||||
#include "check_tag.h" // NOLINT(build/include)
|
||||
#include "tiffio.h" // NOLINT(build/include)
|
||||
|
||||
namespace {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
#include <cstring>
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include "helper.h"
|
||||
#include "helper.h" // NOLINT(build/include)
|
||||
#include "tiffio.h" // NOLINT(build/include)
|
||||
|
||||
namespace {
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include <array>
|
||||
#include <cstdint>
|
||||
|
||||
#include "check_tag.h"
|
||||
#include "check_tag.h" // NOLINT(build/include)
|
||||
#include "tiffio.h" // NOLINT(build/include)
|
||||
|
||||
namespace {
|
||||
|
|
|
@ -16,6 +16,7 @@ add_library(wrapped_tiff OBJECT
|
|||
func.h
|
||||
func.cc
|
||||
)
|
||||
|
||||
set_target_properties(wrapped_tiff
|
||||
PROPERTIES LINKER_LANGUAGE C
|
||||
)
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#include "func.h"
|
||||
#include "func.h" // NOLINT(build/include)
|
||||
|
||||
int TIFFGetField1(TIFF* tif, unsigned tag, void* param) {
|
||||
return TIFFGetField(tif, tag, param);
|
||||
|
|
Loading…
Reference in New Issue
Block a user