mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-14 14:17:18 +02:00
![Rebecca Turner](/assets/img/avatar_default.png)
Also move `SourcePath` into `libutil`. These changes allow `error.hh` and `error.cc` to access source path and position information, which we can use to produce better error messages (for example, we could consider omitting filenames when two or more consecutive stack frames originate from the same file).
8 lines
103 B
C++
8 lines
103 B
C++
#pragma once
|
|
///@file
|
|
|
|
namespace nix {
|
|
|
|
enum RepairFlag : bool { NoRepair = false, Repair = true };
|
|
|
|
}
|