mirror of
https://github.com/zeldaret/ph
synced 2026-06-03 10:31:22 -04:00
Add std::vector
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
namespace std {
|
||||
template<class T>
|
||||
class vector {
|
||||
public:
|
||||
T *elements;
|
||||
int size;
|
||||
int capacity;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user