diff options
| author | Julian Blake Kongslie | 2022-10-15 12:29:32 -0700 |
|---|---|---|
| committer | Julian Blake Kongslie | 2022-10-15 12:29:32 -0700 |
| commit | b182ee426ca1167ddefd4faf5c45f8c8250d29e6 (patch) | |
| tree | 8690035cf1351b63808764119f8275264f6c09b3 /programs/programs.h | |
| parent | Automatically discover programs and incorporate into the binary (diff) | |
| download | biggolf-b182ee426ca1167ddefd4faf5c45f8c8250d29e6.tar.xz | |
const-protect the program images
Diffstat (limited to '')
| -rw-r--r-- | programs/programs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/programs/programs.h b/programs/programs.h index dbe14e2..60fb725 100644 --- a/programs/programs.h +++ b/programs/programs.h | |||
| @@ -4,4 +4,4 @@ | |||
| 4 | #include <map> | 4 | #include <map> |
| 5 | #include <string> | 5 | #include <string> |
| 6 | 6 | ||
| 7 | extern const std::map<std::string, std::uint8_t *> programs; | 7 | extern const std::map<std::string, const std::uint8_t *> programs; |
