Skip to content

Commit 20172dc

Browse files
committed
Changing the language used in warning directive. Making it a bit… nicer.
1 parent 25a3dbf commit 20172dc

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Lumberjack/DDASLLogger.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
**/
1414

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

1919

Lumberjack/DDAbstractDatabaseLogger.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
**/
1212

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

1717
@interface DDAbstractDatabaseLogger ()

Lumberjack/DDFileLogger.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
**/
1717

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

2222
// We probably shouldn't be using DDLog() statements within the DDLog implementation.

Lumberjack/DDLog.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
**/
2020

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

2525
// We probably shouldn't be using DDLog() statements within the DDLog implementation.

Lumberjack/DDTTYLogger.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
**/
1515

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

2020

Lumberjack/Extensions/ContextFilterLogFormatter.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
**/
1313

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

1818
@interface LoggingContextSet : NSObject

Lumberjack/Extensions/DispatchQueueLogFormatter.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
**/
1313

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

1818

0 commit comments

Comments
 (0)