aboutsummaryrefslogtreecommitdiffhomepage
path: root/debug
diff options
context:
space:
mode:
authorGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-10-20 11:56:29 +0200
committerGravatar Hauke Heibel <hauke.heibel@gmail.com>2010-10-20 11:56:29 +0200
commit9cf748757e246db1c555e9a207e6427498016392 (patch)
treecf3ae980a56c92a7f4fb5e62c08abea4f9e3486c /debug
parente259f71477c05de231118a114398be22697feaaa (diff)
Improved the fixed size array display.
Diffstat (limited to 'debug')
-rw-r--r--debug/msvc/eigen_autoexp_part.dat79
1 files changed, 33 insertions, 46 deletions
diff --git a/debug/msvc/eigen_autoexp_part.dat b/debug/msvc/eigen_autoexp_part.dat
index cda25229f..ba7eefc8e 100644
--- a/debug/msvc/eigen_autoexp_part.dat
+++ b/debug/msvc/eigen_autoexp_part.dat
@@ -38,16 +38,13 @@ Eigen::Matrix<*,4,1,*,*,*>|Eigen::Matrix<*,1,4,*,*,*>{
)
preview
- (
- #(
- "(",
-
- #array
- (
- expr : [($c.m_storage.m_data.array)[$i],g],
- size : 4
- ),
- ")"
+ (
+ #(
+ "[",
+ 4,
+ "](",
+ #array(expr: $e.m_storage.m_data.array[$i], size: 4),
+ ")"
)
)
}
@@ -65,22 +62,19 @@ Eigen::Matrix<*,3,1,*,*,*>|Eigen::Matrix<*,1,3,*,*,*>{
)
preview
- (
- #(
- "(",
-
- #array
- (
- expr : [($c.m_storage.m_data.array)[$i],g],
- size : 3
- ),
- ")"
+ (
+ #(
+ "[",
+ 3,
+ "](",
+ #array(expr: $e.m_storage.m_data.array[$i], size: 3),
+ ")"
)
)
}
-; Fixed size floating point 2-vectors
-Eigen::Matrix<float,2,1,*,*,*>|Eigen::Matrix<float,1,2,*,*,*>|Eigen::Matrix<double,2,1,*,*,*>|Eigen::Matrix<double,1,2,*,*,*>{
+; Fixed size 2-vectors
+Eigen::Matrix<*,2,1,*,*,*>|Eigen::Matrix<*,1,2,*,*,*>{
children
(
#(
@@ -91,42 +85,35 @@ Eigen::Matrix<float,2,1,*,*,*>|Eigen::Matrix<float,1,2,*,*,*>|Eigen::Matrix<doub
)
preview
- (
- #(
- "(",
-
- #array
- (
- expr : [($c.m_storage.m_data.array)[$i],g],
- size : 2
- ),
- ")"
+ (
+ #(
+ "[",
+ 2,
+ "](",
+ #array(expr: $e.m_storage.m_data.array[$i], size: 2),
+ ")"
)
)
}
-; Fixed size integral 2-vectors
-Eigen::Matrix<*,2,1,*,*,*>|Eigen::Matrix<*,1,2,*,*,*>{
+; Fixed size 1-vectors
+Eigen::Matrix<*,1,1,*,*,*>|Eigen::Matrix<*,1,1,*,*,*>{
children
(
#(
[internals]: [$c,!],
- x : ($c.m_storage.m_data.array)[0],
- y : ($c.m_storage.m_data.array)[1]
+ x : ($c.m_storage.m_data.array)[0]
)
)
preview
- (
- #(
- "(",
-
- #array
- (
- expr : ($c.m_storage.m_data.array)[$i],
- size : 2
- ),
- ")"
+ (
+ #(
+ "[",
+ 1,
+ "](",
+ #array(expr: $e.m_storage.m_data.array[$i], size: 1),
+ ")"
)
)
}