management+util: add 'override' specifier where applicable
Change-Id: Iafb9c2c59026e4268522120f405585ba35fac248
diff --git a/src/util/indented-stream.hpp b/src/util/indented-stream.hpp
index 0ab76a2..31e5839 100644
--- a/src/util/indented-stream.hpp
+++ b/src/util/indented-stream.hpp
@@ -1,6 +1,6 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
- * Copyright (c) 2013-2014 Regents of the University of California.
+ * Copyright (c) 2013-2016 Regents of the University of California.
*
* This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
*
@@ -56,7 +56,8 @@
public:
IndentedStream(std::ostream& os, const std::string& indent);
- ~IndentedStream();
+ virtual
+ ~IndentedStream() override;
private:
// Write a stream buffer that prefixes each line
@@ -66,7 +67,7 @@
StreamBuf(std::ostream& os, const std::string& indent);
virtual int
- sync();
+ sync() override;
private:
std::ostream& m_output;