aboutsummaryrefslogtreecommitdiff
path: root/libcc1/libcc1.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libcc1/libcc1.cc')
-rw-r--r--libcc1/libcc1.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libcc1/libcc1.cc b/libcc1/libcc1.cc
index 68d366a..2c08dab 100644
--- a/libcc1/libcc1.cc
+++ b/libcc1/libcc1.cc
@@ -93,7 +93,7 @@ struct libcc1 : public gcc_c_context
private:
std::string triplet_regexp_;
public:
- virtual char *find (std::string &compiler) const;
+ char *find (std::string &compiler) const override;
compiler_triplet_regexp (libcc1 *self, std::string triplet_regexp)
: compiler (self), triplet_regexp_ (triplet_regexp)
{
@@ -109,7 +109,7 @@ struct libcc1 : public gcc_c_context
private:
std::string driver_filename_;
public:
- virtual char *find (std::string &compiler) const;
+ char *find (std::string &compiler) const override;
compiler_driver_filename (libcc1 *self, std::string driver_filename)
: compiler (self), driver_filename_ (driver_filename)
{
@@ -132,7 +132,7 @@ public:
{
}
- virtual void print (const char *buf)
+ void print (const char *buf) override
{
back_ptr->print (buf);
}