diff options
author | Jade Lovelace <lix@jade.fyi> | 2024-04-08 15:07:57 -0700 |
---|---|---|
committer | Jade Lovelace <lix@jade.fyi> | 2024-04-08 15:40:12 -0700 |
commit | c58e3f826e891847bd454f4de8176e1fec74627a (patch) | |
tree | 70e2d881f2fc1cbc1ff17113e399b34dba6d03f9 /src/libexpr | |
parent | 54bc1f1b9864ca2d784a03f239b7234c6956f929 (diff) |
pragma once and ///@file everything missing it
Change-Id: Ia1a72348336794b5fb9f2694dd750266089b904e
Diffstat (limited to 'src/libexpr')
-rw-r--r-- | src/libexpr/eval-error.hh | 1 | ||||
-rw-r--r-- | src/libexpr/eval-settings.hh | 1 | ||||
-rw-r--r-- | src/libexpr/gc-small-vector.hh | 1 | ||||
-rw-r--r-- | src/libexpr/pos-idx.hh | 1 | ||||
-rw-r--r-- | src/libexpr/pos-table.hh | 1 | ||||
-rw-r--r-- | src/libexpr/print-ambiguous.hh | 1 | ||||
-rw-r--r-- | src/libexpr/repl-exit-status.hh | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/src/libexpr/eval-error.hh b/src/libexpr/eval-error.hh index 2fb6bcf41..4f0e0d24c 100644 --- a/src/libexpr/eval-error.hh +++ b/src/libexpr/eval-error.hh @@ -1,4 +1,5 @@ #pragma once +///@file #include <algorithm> diff --git a/src/libexpr/eval-settings.hh b/src/libexpr/eval-settings.hh index c78213255..c264b521f 100644 --- a/src/libexpr/eval-settings.hh +++ b/src/libexpr/eval-settings.hh @@ -1,4 +1,5 @@ #pragma once +///@file #include "config.hh" namespace nix { diff --git a/src/libexpr/gc-small-vector.hh b/src/libexpr/gc-small-vector.hh index 94c3ad28b..c4bd1db26 100644 --- a/src/libexpr/gc-small-vector.hh +++ b/src/libexpr/gc-small-vector.hh @@ -1,4 +1,5 @@ #pragma once +///@file #include <boost/container/small_vector.hpp> diff --git a/src/libexpr/pos-idx.hh b/src/libexpr/pos-idx.hh index e94fd85c6..406fc1b36 100644 --- a/src/libexpr/pos-idx.hh +++ b/src/libexpr/pos-idx.hh @@ -1,4 +1,5 @@ #pragma once +///@file #include <cinttypes> diff --git a/src/libexpr/pos-table.hh b/src/libexpr/pos-table.hh index 0b60c4f6d..704f24696 100644 --- a/src/libexpr/pos-table.hh +++ b/src/libexpr/pos-table.hh @@ -1,4 +1,5 @@ #pragma once +///@file #include <cinttypes> #include <numeric> diff --git a/src/libexpr/print-ambiguous.hh b/src/libexpr/print-ambiguous.hh index 50c260a9b..b615d1e5a 100644 --- a/src/libexpr/print-ambiguous.hh +++ b/src/libexpr/print-ambiguous.hh @@ -1,4 +1,5 @@ #pragma once +///@file #include "value.hh" diff --git a/src/libexpr/repl-exit-status.hh b/src/libexpr/repl-exit-status.hh index 08299ff61..f150b9597 100644 --- a/src/libexpr/repl-exit-status.hh +++ b/src/libexpr/repl-exit-status.hh @@ -1,4 +1,5 @@ #pragma once +///@file namespace nix { |