Skip to content

Commit cb79f49

Browse files
Update Assert.cs
Reactivated assertions by default
1 parent 2a4d4bf commit cb79f49

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Assert.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#if DEBUG
22

3-
//#define BOOLEAN_CONDITION_CHECKS
4-
//#define NULL_CHECKS
5-
//#define FILE_PATH_CHECKS
6-
//#define ARRAY_BOUNDS_CHECKS
7-
//#define COMPARISON_CHECKS
8-
//#define ARITHMETIC_LOGIC_CHECKS
9-
//#define MEMORY_CHECKS
3+
#define BOOLEAN_CONDITION_CHECKS
4+
#define NULL_CHECKS
5+
#define FILE_PATH_CHECKS
6+
#define ARRAY_BOUNDS_CHECKS
7+
#define COMPARISON_CHECKS
8+
#define ARITHMETIC_LOGIC_CHECKS
9+
#define MEMORY_CHECKS
1010

1111
#endif
1212

@@ -846,4 +846,4 @@ unsafe public static void IsMemoryAligned<T>(T* ptr)
846846
}
847847
#endregion
848848
}
849-
}
849+
}

0 commit comments

Comments
 (0)