Skip to content

Commit

Permalink
Remove _Nullable as it doesn't work for C
Browse files Browse the repository at this point in the history
  • Loading branch information
KenVanHoeylandt committed Jan 14, 2025
1 parent 1f712c6 commit e31b3f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TactilityC/Source/tt_app_alertdialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ extern "C" {
* @param[in] buttonLabels the buttons to show, or null when there are none to show
* @param[in] buttonLabelCount the amount of buttons (0 or more)
*/
void tt_app_alertdialog_start(const char* title, const char* message, const char* _Nullable buttonLabels[], uint32_t buttonLabelCount);
void tt_app_alertdialog_start(const char* title, const char* message, const char* buttonLabels[], uint32_t buttonLabelCount);

/**
* @return the index of the button that was clicked (the index in the array when start() was called)
Expand Down

0 comments on commit e31b3f6

Please sign in to comment.