summaryrefslogtreecommitdiff
path: root/src/array.cc
diff options
context:
space:
mode:
authorFabrice <fabrice@schaub-dev.xyz>2026-03-02 12:32:05 +0100
committerFabrice <fabrice@schaub-dev.xyz>2026-03-02 12:32:05 +0100
commitef816e31ba15bbda487298339c5ca88456c31d33 (patch)
tree9762c3630113f58215ad4244e1a04271bcacc7f9 /src/array.cc
parent74933654160064f9303551a6c012be6b88d5b626 (diff)
store pointer inside source
Diffstat (limited to 'src/array.cc')
-rw-r--r--src/array.cc9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/array.cc b/src/array.cc
new file mode 100644
index 0000000..0238c05
--- /dev/null
+++ b/src/array.cc
@@ -0,0 +1,9 @@
+#ifndef ARRAY_CC
+#define ARRAY_CC
+
+template<typename T>
+struct Array {
+
+};
+
+#endif