Add missing #pragma once to includes (#494)

This commit is contained in:
Stéphane Bisinger
2026-02-07 19:58:31 +00:00
committed by GitHub
parent 525f3ad4d6
commit a534e2a23b
5 changed files with 12 additions and 3 deletions

View File

@@ -1,3 +1,5 @@
#pragma once
import std.io; import std.io;
import std.core; import std.core;
@@ -67,4 +69,4 @@ namespace auto std::attr {
struct Sealed {} struct Sealed {}
[[sealed]]; [[sealed]];
} }

View File

@@ -1,3 +1,4 @@
#pragma once
import std.io; import std.io;
import std.string; import std.string;
import std.mem; import std.mem;

View File

@@ -1,3 +1,5 @@
#pragma once
import std.string; import std.string;
import std.sys; import std.sys;
import std.io; import std.io;
@@ -42,4 +44,4 @@ namespace auto type
return std::format("\"{}\"", type::escape_bytes(magic.value)); return std::format("\"{}\"", type::escape_bytes(magic.value));
}; };
} }
} }

View File

@@ -1,3 +1,5 @@
#pragma once
import std.mem; import std.mem;
/*! /*!

View File

@@ -1,3 +1,5 @@
#pragma once
import std.io; import std.io;
/*! /*!
@@ -69,4 +71,4 @@ namespace auto type {
} }
} }