Merge pull request from forGGe/missing_c_linkage

Fix fixture using from C++ sources
This commit is contained in:
Mark VanderVoord
2016-09-26 08:43:53 -04:00
committed by GitHub

@ -8,6 +8,11 @@
#ifndef UNITY_FIXTURE_INTERNALS_H_
#define UNITY_FIXTURE_INTERNALS_H_
#ifdef __cplusplus
extern "C"
{
#endif
struct _UnityFixture
{
int Verbose;
@ -36,4 +41,8 @@ void UnityPointer_Set(void** ptr, void* newValue, UNITY_LINE_TYPE line);
void UnityPointer_UndoAllSets(void);
void UnityPointer_Init(void);
#ifdef __cplusplus
}
#endif
#endif /* UNITY_FIXTURE_INTERNALS_H_ */