-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correctly use semantic parent in qid
Fixes #53
- Loading branch information
Jesse van den Kieboom
committed
Jul 10, 2014
1 parent
23b4e6b
commit 212d63a
Showing
7 changed files
with
50 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
namespace N | ||
{ | ||
struct A | ||
{ | ||
bool operator<(const A &other); | ||
}; | ||
|
||
bool operator==(const A &a, const A &b); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<namespace id="N" name="N" xmlns="http://jessevdk.github.com/cldoc/1.0"> | ||
<struct name="A" ref="N::A#N::A" /> | ||
</namespace> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<struct id="N::A" interface="true" name="A" xmlns="http://jessevdk.github.com/cldoc/1.0"> | ||
<method abstract="yes" id="N::A::operator<" name="operator<"> | ||
<return> | ||
<type builtin="yes" name="bool" /> | ||
</return> | ||
<argument id="N::A::operator<::other" name="other"> | ||
<type name="A" qualifier=" const &" ref="N::A#N::A" /> | ||
</argument> | ||
</method> | ||
<function id="N::operator==" name="operator=="> | ||
<return> | ||
<type builtin="yes" name="bool" /> | ||
</return> | ||
<argument id="N::operator==::a" name="a"> | ||
<type name="A" qualifier=" const &" ref="N::A#N::A" /> | ||
</argument> | ||
<argument id="N::operator==::b" name="b"> | ||
<type name="A" qualifier=" const &" ref="N::A#N::A" /> | ||
</argument> | ||
</function> | ||
</struct> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<index xmlns="http://jessevdk.github.com/cldoc/1.0"> | ||
<namespace name="N" ref="N#N"> | ||
<struct name="A" ref="N::A#N::A" /> | ||
</namespace> | ||
</index> |