Inline empty constructor.

llvm-svn: 205366
This commit is contained in:
Rui Ueyama 2014-04-01 22:11:18 +00:00
parent c2af77b027
commit 26eb6c5bc2
2 changed files with 2 additions and 6 deletions

View File

@ -285,7 +285,8 @@ protected:
/// \brief Represents Internal Input files
class SimpleFileNode : public FileNode {
public:
SimpleFileNode(StringRef path, int64_t ordinal = -1);
SimpleFileNode(StringRef path, int64_t ordinal = -1)
: FileNode(path, ordinal) {}
virtual ~SimpleFileNode() {}

View File

@ -130,11 +130,6 @@ void Group::setResolveState(uint32_t resolveState) {
_elements[_currentElementIndex]->setResolveState(resolveState);
}
/// SimpleFileNode
SimpleFileNode::SimpleFileNode(StringRef path, int64_t ordinal)
: FileNode(path, ordinal) {}
/// Group
/// \brief Return the next file that need to be processed by the resolver.