forked from OSchip/llvm-project
parent
c2af77b027
commit
26eb6c5bc2
|
@ -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() {}
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue