Skip to content

Commit 81ee4fa

Browse files
committed
Fix indentation on PureLayoutDefines.h
1 parent a79755a commit 81ee4fa

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

PureLayout/PureLayout/PureLayoutDefines.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,22 +41,22 @@
4141

4242
// Define some preprocessor macros that allow nullability annotations to be adopted in a backwards-compatible manner.
4343
#if __has_feature(nullability)
44-
# define PL__ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_BEGIN
45-
# define PL__ASSUME_NONNULL_END NS_ASSUME_NONNULL_END
44+
# define PL__ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_BEGIN
45+
# define PL__ASSUME_NONNULL_END NS_ASSUME_NONNULL_END
4646
#else
4747
# define PL__ASSUME_NONNULL_BEGIN
4848
# define PL__ASSUME_NONNULL_END
4949
#endif
5050

5151
// Define some preprocessor macros that allow generics to be adopted in a backwards-compatible manner.
5252
#if __has_feature(objc_generics)
53-
# define PL__GENERICS(class, ...) class<__VA_ARGS__>
53+
# define PL__GENERICS(class, ...) class<__VA_ARGS__>
5454
#else
55-
# define PL__GENERICS(class, ...) class
55+
# define PL__GENERICS(class, ...) class
5656
#endif
5757

5858
// Using generics with NSArray is so common in PureLayout that it gets a dedicated preprocessor macro for better readability.
59-
#define PL__NSArray_of(type) PL__GENERICS(NSArray, type)
59+
#define PL__NSArray_of(type) PL__GENERICS(NSArray, type)
6060

6161
// Define generic AL-prefixed macros for the types/constants/etc that have slight naming variations across iOS and OS X, which allows the same code to be platform-independent.
6262
#if TARGET_OS_IPHONE

0 commit comments

Comments
 (0)