Skip to content

Commit 4adde0e

Browse files
committed
Set default build option to be debug. Fix two unclosed debug regions.
1 parent 0325683 commit 4adde0e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Source/Core/Matrix2.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ define([
570570
if (!defined(matrix)) {
571571
throw new DeveloperError('matrix is required');
572572
}
573-
//excludeEnd('debug');
573+
//>>includeEnd('debug');
574574

575575
var column0Row0 = matrix[0];
576576
var column0Row1 = matrix[2];

Source/Core/Matrix4.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1847,7 +1847,7 @@ define([
18471847
if (typeof epsilon !== 'number') {
18481848
throw new DeveloperError('epsilon is required and must be a number');
18491849
}
1850-
//excludeEnd('debug');
1850+
//>>includeEnd('debug');
18511851

18521852
return (left === right) ||
18531853
(defined(left) &&

Tools/build.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
useStrict : true,
44
optimizeCss : 'standard',
55
pragmas : {
6-
debug : false
6+
debug : true
77
}
88
})

0 commit comments

Comments
 (0)