Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

First (far from done) implementation for printf style formatting for … #500

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'upstream/master'
  • Loading branch information
alariois committed May 26, 2020
commit 439c4bdde36c5b11bbb61390eaaba6908bcb7b9f
5 changes: 2 additions & 3 deletions src/unity_internals.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
#else
# define UNITY_FUNCTION_ATTR(a) /* ignore */
#endif

/*-------------------------------------------------------
* Guess Widths If Not Specified
*-------------------------------------------------------*/
Expand Down Expand Up @@ -624,8 +623,8 @@ void UnityAssertNumbersArrayWithin(const UNITY_UINT delta,
const UNITY_FLAGS_T flags,
const char* msg VA_ARGS_IF_ENABLED);

void UnityFail(const UNITY_LINE_TYPE line, const char* message VA_ARGS_IF_ENABLED);
void UnityIgnore(const UNITY_LINE_TYPE line, const char* message VA_ARGS_IF_ENABLED);
void UnityFail(const UNITY_LINE_TYPE line, const char* message VA_ARGS_IF_ENABLED) UNITY_FUNCTION_ATTR(noreturn);
void UnityIgnore(const UNITY_LINE_TYPE line, const char* message VA_ARGS_IF_ENABLED) UNITY_FUNCTION_ATTR(noreturn);
void UnityMessage(const UNITY_LINE_TYPE line, const char* message VA_ARGS_IF_ENABLED);

#ifndef UNITY_EXCLUDE_FLOAT
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.