1 2 3 4 5 6 7 8 9 10 11
#ifndef HYPERNEAT_STRING_HPP #define HYPERNEAT_STRING_HPP #include <string> namespace hyperneat { using String = std::string; } #endif