createLinkerInput(const lld::LinkingContext &);
/// \brief validates the Input Element
- virtual bool validate() { return true; }
+ virtual bool validate() {
+ (void)_ctx;
+ return true;
+ }
/// \brief Dump the Input Element
virtual bool dump(raw_ostream &) { return true; }
createLinkerInput(const lld::LinkingContext &);
/// \brief validates the Input Element
- virtual bool validate() { return true; }
+ virtual bool validate() {
+ (void)_ctx;
+ return true;
+ }
/// \brief Dump the Input Element
virtual bool dump(raw_ostream &) { return true; }
}
/// \brief Validate the options
- virtual bool validate() { return true; }
+ virtual bool validate() {
+ (void)_elfLinkingContext;
+ return true;
+ }
/// \brief Dump the ELFGroup
virtual bool dump(llvm::raw_ostream &) { return true; }
-protected:
+private:
ELFLinkingContext &_elfLinkingContext;
};