diff options
author | HampusM <hampus@hampusmat.com> | 2022-02-16 20:03:13 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-02-16 20:03:13 +0100 |
commit | d5612756b98afa43443a210722691c2e07ddfd5c (patch) | |
tree | e8d718654996309b41fe1b00f6a6f13fba93ee0a /src | |
parent | 3908dd75438de89ebec2b0737634faf23ce93884 (diff) |
refactor: add compiler warnings
Diffstat (limited to 'src')
-rw-r--r-- | src/app/maze.tpp | 3 | ||||
-rw-r--r-- | src/mazerator.cpp | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/app/maze.tpp b/src/app/maze.tpp index f0098a1..12422c3 100644 --- a/src/app/maze.tpp +++ b/src/app/maze.tpp @@ -8,6 +8,8 @@ #include <utility> #include <vector> +namespace +{ /** * Returns the neighbours of a position in a maze. * @@ -97,6 +99,7 @@ void pos_to_between(const std::shared_ptr<Vector2> &between_pos, unsigned int co *between_pos -= diff; } } +} // namespace template <typename Element> void matrix_to_maze(Matrix<Element> *matrix, std::shared_ptr<Vector2> start_pos, diff --git a/src/mazerator.cpp b/src/mazerator.cpp index a884bbd..6a0d1aa 100644 --- a/src/mazerator.cpp +++ b/src/mazerator.cpp @@ -16,6 +16,8 @@ constexpr unsigned int DEFAULT_MAZE_HEIGHT = 20U; constexpr std::string_view DEFAULT_MAZE_WALL = "█"; +namespace +{ void optarg_error(int arg, const std::string &error) { std::cout << "Error: Invalid option argument for -" << arg << ". " << error @@ -46,6 +48,7 @@ void parse_uint_arg(unsigned int *num_dst, int arg, bool check_zero = false) optarg_error(arg, std::string(error)); } } +} // namespace const std::array<option, 8> options = { option({"width", required_argument, nullptr, 'w'}), @@ -149,6 +152,8 @@ int main(int argc, char *argv[]) << std::endl; return EXIT_FAILURE; } + default: + abort(); } } |