diff options
Diffstat (limited to 'Tests/ObjectLibrary/A/a.h')
-rw-r--r-- | Tests/ObjectLibrary/A/a.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tests/ObjectLibrary/A/a.h b/Tests/ObjectLibrary/A/a.h index 6bfbc82..7259f98 100644 --- a/Tests/ObjectLibrary/A/a.h +++ b/Tests/ObjectLibrary/A/a.h @@ -1,6 +1,6 @@ -#ifndef A -# error "A not defined" +#ifndef A_DEF +# error "A_DEF not defined" #endif -#ifdef B -# error "B must not be defined" +#ifdef B_DEF +# error "B_DEF must not be defined" #endif |