Skip to content

Commit

Permalink
fix: compile error with gcc13
Browse files Browse the repository at this point in the history
Without this i am getting `'uint32_t' is not a member of 'std'`. See
also https://gcc.gnu.org/gcc-13/porting_to.html "Header dependency
changes".
  • Loading branch information
Conni2461 committed Oct 4, 2024
1 parent e810608 commit af39262
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions source/Setting.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#ifndef ROADRUNNER_SETTING_H
#define ROADRUNNER_SETTING_H

#include <cstdint>
#include <variant>
#include <iostream>
#include <vector>
Expand Down

0 comments on commit af39262

Please sign in to comment.