diff options
| author | Aetias <aetias@outlook.com> | 2024-10-19 13:34:42 +0200 |
|---|---|---|
| committer | Aetias <aetias@outlook.com> | 2024-10-19 13:34:42 +0200 |
| commit | 4826a6e764b92d623b8517883cd8e901a4348f86 (patch) | |
| tree | bc8df7ba0805e37d1e44a18e755679f2ae1cc145 /libs/cpp/include/vector | |
| parent | 0d62c02f14bd122690306976d8a58c5449dd3040 (diff) | |
| parent | ffdfd609fb9bc8f968ddc6f187da1d50731cbf69 (diff) | |
Merge branch 'main' into match_actor_rupee
Diffstat (limited to 'libs/cpp/include/vector')
| -rw-r--r-- | libs/cpp/include/vector | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libs/cpp/include/vector b/libs/cpp/include/vector index e775aba0..7d78e50c 100644 --- a/libs/cpp/include/vector +++ b/libs/cpp/include/vector @@ -1,11 +1,10 @@ #pragma once namespace std { - template<class T> - class vector { + template <class T> class vector { public: T *elements; int size; int capacity; }; -} +} // namespace std |
