Skip to content

Commit

Permalink
[luci] Fix overflow warning (#13945)
Browse files Browse the repository at this point in the history
This commit resolves analyzer's overflow warning.

ONE-DCO-1.0-Signed-off-by: Hyeongseok Oh <hseok82.oh@samsung.com>
Co-authored-by: SaeHie Park <saehie.park@gmail.com>
  • Loading branch information
hseok-oh and seanshpark authored Sep 6, 2024
1 parent 5d22531 commit 9f91b41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/luci/export/src/CircleExporterUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include <mio/circle/schema_generated.h>

// limitation of current flatbuffers file size
inline constexpr unsigned int FLATBUFFERS_SIZE_MAX = 2147483648;
inline constexpr uint64_t FLATBUFFERS_SIZE_MAX = 2147483648UL; // 2GB

namespace luci
{
Expand Down

0 comments on commit 9f91b41

Please sign in to comment.