Format more files in tests directory

This commit is contained in:
Florian Albrechtskirchinger 2022-07-25 13:08:30 +02:00
parent 5bbcb6c0a3
commit f42b31b918
No known key found for this signature in database
GPG Key ID: 19618CE9B2D4BE6D
9 changed files with 11 additions and 8 deletions

View File

@ -15,6 +15,9 @@ SED:=$(shell command -v gsed || which sed)
# the list of sources in the include folder
SRCS=$(shell find include -type f | sort)
# the list of sources in the tests folder
TESTS_SRCS=$(shell find tests -type f \( -name '*.hpp' -o -name '*.cpp' -o -name '*.cu' \) -not -path 'tests/thirdparty/*' | sort)
# the single header (amalgamated from the source files)
AMALGAMATED_FILE=single_include/nlohmann/json.hpp

View File

@ -1,6 +1,6 @@
#include <nlohmann/json.hpp>
int main(int argc, char **argv)
int main(int argc, char** argv)
{
nlohmann::json j;

View File

@ -1,6 +1,6 @@
#include <nlohmann/json.hpp>
int main(int argc, char **argv)
int main(int argc, char** argv)
{
nlohmann::json j;

View File

@ -1,6 +1,6 @@
#include <nlohmann/json.hpp>
int main(int argc, char **argv)
int main(int argc, char** argv)
{
nlohmann::json j;

View File

@ -1,6 +1,6 @@
#include <nlohmann/json.hpp>
int main(int argc, char **argv)
int main(int argc, char** argv)
{
nlohmann::json j;

View File

@ -1,6 +1,6 @@
#include <nlohmann/json.hpp>
int main(int argc, char **argv)
int main(int argc, char** argv)
{
nlohmann::json j;

View File

@ -1,4 +1,4 @@
#include <nlohmann/json.hpp>
#include "Foo.hpp"
class Bar : public Foo{};
class Bar : public Foo {};

View File

@ -1,4 +1,4 @@
#pragma once
#include <nlohmann/json.hpp>
class Foo{};
class Foo {};

View File

@ -1,6 +1,6 @@
#include <nlohmann/json.hpp>
int main(int argc, char **argv)
int main(int argc, char** argv)
{
nlohmann::json j;