summaryrefslogtreecommitdiffhomepage
path: root/misc/examples
diff options
context:
space:
mode:
Diffstat (limited to 'misc/examples')
-rw-r--r--misc/examples/multidim.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/misc/examples/multidim.c b/misc/examples/multidim.c
index df8f485d..43c21443 100644
--- a/misc/examples/multidim.c
+++ b/misc/examples/multidim.c
@@ -28,7 +28,6 @@ int main()
}
puts("ss3 = ms3[:, 1:3, 1:3]");
ispan3 ss3 = ms3;
- //cspan_slice(&ss3, {c_ALL}, {1,3}, {1,3});
ss3 = cspan_slice(ispan3, &ms3, {c_ALL}, {1,3}, {1,3});
for (int i=0; i != ss3.shape[0]; i++) {