Skip to content

Commit

Permalink
Fix for gcc-13 build failure (#180)
Browse files Browse the repository at this point in the history
The error was:
  lib/radio_model.h:176:99: error: ‘uint32_t’ has not been declared

Fix is to "#include <cstdint>"
  • Loading branch information
hbeni authored Mar 19, 2024
1 parent 4ac8bf0 commit 104da43
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions client/mumble-plugin/lib/radio_model.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <cstdint>
#include <iostream>
#include <cmath>
#include <regex>
Expand Down

0 comments on commit 104da43

Please sign in to comment.