Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
* Fix error message HTTP response status code in image src setter
* `roundRect()` shape incorrect when radii were large relative to rectangle size (#2400)
* Reject loadImage when src is null or invalid (#2304)
* Fix compilation on GCC 15 by including <cstdint> (#2545)

3.2.0
==================
Expand Down
2 changes: 2 additions & 0 deletions src/CharData.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

#pragma once

#include <cstdint>

namespace CharData {
static constexpr uint8_t Whitespace = 0x1;
static constexpr uint8_t Newline = 0x2;
Expand Down