aboutsummaryrefslogtreecommitdiff
path: root/include/HyperNeat/Utils/String.hpp
blob: ab74d4572f18bc19284b0d6dafdc3d40d45881db (plain)
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