| 17 | { |
| 18 | |
| 19 | VcsRevision VcsRevision::createSpecialRevision( KDevelop::VcsRevision::RevisionSpecialType _type ) |
| 20 | { |
| 21 | VcsRevision rev; |
| 22 | rev.setRevisionValue( QVariant::fromValue<KDevelop::VcsRevision::RevisionSpecialType>( _type ), VcsRevision::Special ); |
| 23 | return rev; |
| 24 | } |
| 25 | |
| 26 | class VcsRevisionPrivate : public QSharedData |
| 27 | { |
nothing calls this directly
no test coverage detected