aboutsummaryrefslogtreecommitdiff
path: root/tests/small-vector
AgeCommit message (Collapse)AuthorFilesLines
2019-05-03Partially dismantle modularization using Modules TS semanticsBoris Kolpackov2-4/+3
2019-01-16Update copyright yearKaren Arutyunov2-2/+2
2018-05-19Update copyright yearKaren Arutyunov2-2/+2
2018-01-04Implement small_list, small_forward_listBoris Kolpackov1-2/+1
Note that with VC small_list is never "small" because of the extra "headnode" that this implementation allocates (see notes in small-list.mxx for details).
2017-10-01Only enable modularized build if forcedBoris Kolpackov1-6/+1
The two boolean command line variables that control this are: force_modules force_std_modules
2017-09-22Initial modularization with both Clang and VC hacksBoris Kolpackov2-3/+23
Note: gave up on VC about half way though.
2017-07-13Add hxx prerequisite type in test buildfilesKaren Arutyunov1-1/+1
2017-07-13Fix tests linkageKaren Arutyunov1-2/+2
2017-07-12Make use of wildcards in buildfilesKaren Arutyunov1-1/+1
2017-05-01Add hxx extension for headers and lib prefix for library dirKaren Arutyunov2-3/+3
2017-01-12Add small_vector workaround for VCBoris Kolpackov1-23/+41
2017-01-05Update copyright yearBoris Kolpackov2-2/+2
2016-12-01Revert no longer necessary quoting in buildfilesBoris Kolpackov1-1/+0
2016-11-23Quote path values when assigned to test.argumentsKaren Arutyunov1-1/+1
2016-11-19Add small_vector<T, N> class templateBoris Kolpackov2-0/+140
It has a (mostly) std::vector interface (it derives from it) and will store up to N elements in the same storage as the vector instance itself.