diff options
| author | Yanis42 <35189056+Yanis42@users.noreply.github.com> | 2024-05-02 23:54:12 +0200 |
|---|---|---|
| committer | Yanis42 <35189056+Yanis42@users.noreply.github.com> | 2024-05-02 23:54:12 +0200 |
| commit | 3099ac3fed789d8c7442db81e319cf6b59ecd6cf (patch) | |
| tree | 276de2f5c5c309b8aa77737ee99d58ca9034c8ce /libs/cpp | |
| parent | 0e4544d40e3468ccfdbabb2c3c497fbb2a097287 (diff) | |
| parent | 5c08baf1c24e50891ea12e8dcd0038c935875631 (diff) | |
Merge remote-tracking branch 'upstream/main' into match_actor_rupee
Diffstat (limited to 'libs/cpp')
| -rw-r--r-- | libs/cpp/include/vector | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libs/cpp/include/vector b/libs/cpp/include/vector new file mode 100644 index 00000000..e775aba0 --- /dev/null +++ b/libs/cpp/include/vector @@ -0,0 +1,11 @@ +#pragma once + +namespace std { + template<class T> + class vector { + public: + T *elements; + int size; + int capacity; + }; +} |
