summaryrefslogtreecommitdiff
path: root/tools/doc/doc_data.h
diff options
context:
space:
mode:
Diffstat (limited to 'tools/doc/doc_data.h')
-rw-r--r--tools/doc/doc_data.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/doc/doc_data.h b/tools/doc/doc_data.h
index d1aebff4ce..7996071c74 100644
--- a/tools/doc/doc_data.h
+++ b/tools/doc/doc_data.h
@@ -67,6 +67,9 @@ public:
String name;
String type;
String description;
+ bool operator<(const PropertyDoc& p_prop) const {
+ return name<p_prop.name;
+ }
};
struct ClassDoc {