File tree 2 files changed +8
-16
lines changed
2 files changed +8
-16
lines changed Original file line number Diff line number Diff line change @@ -62,11 +62,17 @@ class MRDOCS_DECL
62
62
63
63
/* * Returns the Corpus associated with the Dom.
64
64
*/
65
- Corpus const & operator *() const ;
65
+ Corpus const & operator *() const
66
+ {
67
+ return getCorpus ();
68
+ }
66
69
67
70
/* * Returns the Corpus associated with the Dom.
68
71
*/
69
- Corpus const * operator ->() const ;
72
+ Corpus const * operator ->() const
73
+ {
74
+ return &getCorpus ();
75
+ }
70
76
71
77
/* * Construct a lazy Dom object representing the specified symbol.
72
78
Original file line number Diff line number Diff line change @@ -707,20 +707,6 @@ getCorpus() const
707
707
return impl_->getCorpus ();
708
708
}
709
709
710
- Corpus const &
711
- DomCorpus::
712
- operator *() const
713
- {
714
- return getCorpus ();
715
- }
716
-
717
- Corpus const *
718
- DomCorpus::
719
- operator ->() const
720
- {
721
- return &getCorpus ();
722
- }
723
-
724
710
namespace dom {
725
711
/* Determine if a type has a mrdocs::toString overload
726
712
*/
You can’t perform that action at this time.
0 commit comments