Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

#ifndef SECONDHEADER
#define SECONDHEADER

#include "vector"

template <class T>
struct Address {};

template <>
struct Address<std::vector<bool>>
    : Address<std::vector<bool>::iterator> {};

#endif