Skip to content
This repository has been archived by the owner on Dec 5, 2019. It is now read-only.

Commit

Permalink
Changing the language used in warning directive. Making it a bit… nicer.
Browse files Browse the repository at this point in the history
  • Loading branch information
robbiehanson committed Nov 19, 2011
1 parent 25a3dbf commit 20172dc
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Lumberjack/DDASLLogger.m
Expand Up @@ -13,7 +13,7 @@
**/

#if ! __has_feature(objc_arc)
#warning This file must be compiled with ARC. Either turn on ARC for the project or use -fobjc-arc flag.
#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC).
#endif


Expand Down
2 changes: 1 addition & 1 deletion Lumberjack/DDAbstractDatabaseLogger.m
Expand Up @@ -11,7 +11,7 @@
**/

#if ! __has_feature(objc_arc)
#warning This file must be compiled with ARC. Either turn on ARC for the project or use -fobjc-arc flag.
#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC).
#endif

@interface DDAbstractDatabaseLogger ()
Expand Down
2 changes: 1 addition & 1 deletion Lumberjack/DDFileLogger.m
Expand Up @@ -16,7 +16,7 @@
**/

#if ! __has_feature(objc_arc)
#warning This file must be compiled with ARC. Either turn on ARC for the project or use -fobjc-arc flag.
#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC).
#endif

// We probably shouldn't be using DDLog() statements within the DDLog implementation.
Expand Down
2 changes: 1 addition & 1 deletion Lumberjack/DDLog.m
Expand Up @@ -19,7 +19,7 @@
**/

#if ! __has_feature(objc_arc)
#warning This file must be compiled with ARC. Either turn on ARC for the project or use -fobjc-arc flag.
#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC).
#endif

// We probably shouldn't be using DDLog() statements within the DDLog implementation.
Expand Down
2 changes: 1 addition & 1 deletion Lumberjack/DDTTYLogger.m
Expand Up @@ -14,7 +14,7 @@
**/

#if ! __has_feature(objc_arc)
#warning This file must be compiled with ARC. Either turn on ARC for the project or use -fobjc-arc flag.
#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC).
#endif


Expand Down
2 changes: 1 addition & 1 deletion Lumberjack/Extensions/ContextFilterLogFormatter.m
Expand Up @@ -12,7 +12,7 @@
**/

#if ! __has_feature(objc_arc)
#warning This file must be compiled with ARC. Either turn on ARC for the project or use -fobjc-arc flag.
#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC).
#endif

@interface LoggingContextSet : NSObject
Expand Down
2 changes: 1 addition & 1 deletion Lumberjack/Extensions/DispatchQueueLogFormatter.m
Expand Up @@ -12,7 +12,7 @@
**/

#if ! __has_feature(objc_arc)
#warning This file must be compiled with ARC. Either turn on ARC for the project or use -fobjc-arc flag.
#warning This file must be compiled with ARC. Use -fobjc-arc flag (or convert project to ARC).
#endif


Expand Down

0 comments on commit 20172dc

Please sign in to comment.