Skip to content

Commit

Permalink
ICU-22807 Fix for missing __STDC_FORMAT_MACROS before inttypes.h
Browse files Browse the repository at this point in the history
  • Loading branch information
barracuda156 committed Jun 24, 2024
1 parent cf7ff1b commit ce62382
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions icu4c/source/i18n/messageformat2_function_registry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
#include "number_types.h"
#include "uvector.h" // U_ASSERT

#ifndef __STDC_FORMAT_MACROS
#define __STDC_FORMAT_MACROS
#endif
#include <inttypes.h>
#include <math.h>

Expand Down

0 comments on commit ce62382

Please sign in to comment.