using Triangle = ...">

"use" of the C ++ 11 keyword in doxygen

I have C ++ 11 code that looks something like this:

using Vertex = std::array<float, 3> using Triangle = struct TriangleStruct { Vertex v1, v2, v3; }; 

However, doxygen does not detect Vertex or Triangle as a structure or even as a type. If I do the old typedef struct ... style typedef struct ... it really works.

Is this doxygen format supported? Is it possible to find it?

I am using doxygen 1.8.8 for OS X.

+6
source share

Source: https://habr.com/ru/post/981057/


All Articles