Skip to content
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
Fix char constant problem
  • Loading branch information
Arnd R. Strube committed Jun 8, 2015
commit 32898c90f61ab17c6c818fbe2373cbe4568aebb5
4 changes: 2 additions & 2 deletions tests/MixInTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include "CppUTest/TestHarness.h"

// system under test interface
class SUT
class SUT
{
public:
virtual const char* className() = 0;
Expand All @@ -37,5 +37,5 @@ class SUT
MIXIN_PARAMS(DemoMixInGroup) // MIXIN_GROUP name
{
SUT* obj;
char* expectedName;
char const* expectedName;
};