style: update include guards and incl statements to follow google style guide

This commit is contained in:
Aaron Po
2026-06-28 13:07:14 -04:00
parent 98f97b8e2c
commit c0ffdb0ec7
28 changed files with 199 additions and 143 deletions

View File

@@ -9,10 +9,11 @@
* readable output. Adapted from Boost JSON library examples.
*/
#include <boost/json.hpp>
#include <ostream>
#include <string>
#include <boost/json.hpp>
/**
* @brief Pretty-prints a JSON value to an output stream with indentation.
*
@@ -106,4 +107,4 @@ inline void PrettyPrint(std::ostream& outstream,
}
}
#endif
#endif // BIERGARTEN_PIPELINE_INCLUDES_JSON_HANDLING_PRETTY_PRINT_H_