Skip to content

Commit

Permalink
docs(core): use int32_t on sample log messages
Browse files Browse the repository at this point in the history
Co-authored-by: Luís Fonseca <[email protected]>
  • Loading branch information
RiscadoA and luishfonseca authored Sep 25, 2023
1 parent aab09d0 commit 054f72a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/samples/reflection/traits/array/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void printArray(const Type& type, const void* instance)
/// [Getting array elements]
if (!arrayTrait.elementType().is<int32_t>())
{
CUBOS_INFO("This function does not support printing arrays of types other than int");
CUBOS_INFO("This function does not support printing arrays of types other than int32_t");
return;
}

Expand Down

0 comments on commit 054f72a

Please sign in to comment.