diff options
Diffstat (limited to 'tools/doc/doc_data.h')
-rw-r--r-- | tools/doc/doc_data.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/doc/doc_data.h b/tools/doc/doc_data.h index 877f30defb..d1aebff4ce 100644 --- a/tools/doc/doc_data.h +++ b/tools/doc/doc_data.h @@ -50,6 +50,9 @@ public: String qualifiers; String description; Vector<ArgumentDoc> arguments; + bool operator<(const MethodDoc& p_md) const { + return name<p_md.name; + } }; struct ConstantDoc { |