Changes in src/tests/vector/array.h [6b0b624:9a4e996]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/vector/array.h
r6b0b624 r9a4e996 9 9 // Author : Richard C. Bilson 10 10 // Created On : Wed May 27 17:56:53 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Sat Jul 22 10:04:20 201713 // Update Count : 611 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed Apr 27 17:26:04 2016 13 // Update Count : 5 14 14 // 15 15 16 #pragma once 16 #ifndef ARRAY_H 17 #define ARRAY_H 17 18 18 19 //#include <iterator> … … 21 22 // element has index 0. 22 23 trait array( otype array_type, otype elt_type ) { 23 lvalue elt_type?[?]( array_type, int );24 elt_type & ?[?]( array_type, int ); 24 25 }; 25 26 … … 44 45 elt_type * end( array_type * array ); 45 46 47 #endif // ARRAY_H 48 46 49 // Local Variables: // 47 50 // tab-width: 4 //
Note:
See TracChangeset
for help on using the changeset viewer.