C++ 在Doxygen中,如何引用C++;用户定义的文字?

C++ 在Doxygen中,如何引用C++;用户定义的文字?,c++,c++11,doxygen,C++,C++11,Doxygen,我用Doxygen记录了一对函数。一个是用户定义的文本;我想在我的Doxygen评论中引用它;使用运算符“”\u hash()或运算符“”\u hash()不起作用: //! @see operator""_hash() constexpr std::size_t static_string_hash(const char* data, std::size_t count); constexpt std::size_t operator"" _hash(const char* data, st

我用Doxygen记录了一对函数。一个是用户定义的文本;我想在我的Doxygen评论中引用它;使用
运算符“”\u hash()
运算符“”\u hash()
不起作用:

//! @see operator""_hash()
constexpr std::size_t static_string_hash(const char* data, std::size_t count);

constexpt std::size_t operator"" _hash(const char* data, std::size_t count);

如何在我的Doxygen注释中引用此例程?

AFAIK Doxygen还不支持用户定义的文字。@pmr你说得对,我刚刚检查了,它只提到字符串文字:-/