12345678910111213141516171819202122232425 |
- #ifndef BOOST_COMPUTE_CONTAINER_STRING_HPP
- #define BOOST_COMPUTE_CONTAINER_STRING_HPP
- #include <boost/compute/types/fundamental.hpp>
- #include <boost/compute/container/basic_string.hpp>
- namespace boost {
- namespace compute {
- typedef basic_string<char_> string;
- }
- }
- #endif
|