Cosmetic changes for Java std::array wrappers
This commit is contained in:
parent
cac396eb56
commit
b41fdba9ef
1 changed files with 4 additions and 4 deletions
|
|
@ -8,13 +8,13 @@ namespace std {
|
|||
|
||||
template<class T, size_t N> class array {
|
||||
public:
|
||||
typedef T& reference;
|
||||
typedef const T& const_reference;
|
||||
typedef size_t size_type;
|
||||
typedef ptrdiff_t difference_type;
|
||||
typedef T value_type;
|
||||
typedef T* pointer;
|
||||
typedef const T* const_pointer;
|
||||
typedef T &reference;
|
||||
typedef const T &const_reference;
|
||||
typedef T *pointer;
|
||||
typedef const T *const_pointer;
|
||||
array();
|
||||
array(const array& other);
|
||||
size_type size() const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue