Reformat the world

This commit is contained in:
Tim Wojtulewicz 2021-09-16 15:35:39 -07:00
parent 194cb24547
commit b2f171ec69
714 changed files with 35149 additions and 35203 deletions

View file

@ -2,20 +2,20 @@
#pragma once
#include <string>
#include <list>
#include <string>
#include <vector>
namespace zeek::detail {
namespace zeek::detail
{
// Script file we have already scanned (or are in the process of scanning).
// They are identified by normalized realpath.
class ScannedFile {
class ScannedFile
{
public:
ScannedFile(int arg_include_level,
std::string arg_name, bool arg_skipped = false,
ScannedFile(int arg_include_level, std::string arg_name, bool arg_skipped = false,
bool arg_prefixes_checked = false);
/**
@ -25,15 +25,15 @@ public:
bool AlreadyScanned() const;
int include_level;
bool skipped; // This ScannedFile was @unload'd.
bool prefixes_checked; // If loading prefixes for this file has been tried.
bool skipped; // This ScannedFile was @unload'd.
bool prefixes_checked; // If loading prefixes for this file has been tried.
std::string name;
std::string canonical_path; // normalized, absolute path via realpath()
static auto constexpr canonical_stdin_path = "<stdin>";
};
};
extern std::list<ScannedFile> files_scanned;
extern std::vector<std::string> sig_files;
} // namespace zeek::detail
} // namespace zeek::detail