• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

JamfileD25-Apr-2025352 1210

READMED25-Apr-2025431 1710

another_tuple_test_bench.cppD25-Apr-20253 KiB16390

io_test.cppD25-Apr-20253.6 KiB14288

std_tuple_element.cppD25-Apr-20252 KiB5739

std_tuple_size.cppD25-Apr-20252.2 KiB6246

structured_bindings.cppD25-Apr-20251.6 KiB7857

tuple_test_bench.cppD25-Apr-202513.3 KiB491288

README

1To compile the
2
3libs/tuple/test/*.cpp
4
5files, you need to set include paths
6for boost.
7For example, in libs/tuple/test directory you would type (using g++):
8
9g++ -I../../.. tuple_test_bench.cpp
10
11The following is not true anymore:
12
13  If you want to use tuple_io, you need to compile and link src/tuple.cpp:
14  g++ -I../../.. ../src/tuple.cpp io_test.cpp
15
16Thanks to Hartmut Kaiser's suggestion, the tuple.cpp is not needed anymore.
17