尝试连接 Boost Hana 编译时字符串会在我的应用程序中产生编译器错误。是否需要激活任何特定的配置选项或需要包含标题才能使其正常工作?
这是一个例子:
#define BOOST_HANA_CONFIG_ENABLE_STRING_UDL
#include "boost/hana.hpp"
namespace hana = boost::hana;
using namespace hana::literals;
int main() {
auto t = "left, "_s + "right"_s;
}
error: no match for ‘operator+’ (operand types are ‘boost::hana::string<'l', 'e', 'f', 't', ',', ' '>’ and ‘boost::hana::string<'r', 'i', 'g', 'h', 't'>’)
这在 GCC 6.3.1 上失败并出现错误。来自 Boost 1.62.0 的 Hana
作为旁注,将操作员替换为+
失败hana::plus
并出现错误hana::plus(x, y) requires 'x' to be a Monoid