manager: avoid default arguments

Two defaulted parameters of the same type is just a bug waiting to
happen.  Since there is only a single call site that is already
explicitly providing both arguments, drop the defaults.

Change-Id: Ibf41e53bec603dd1585f24ade7c8e8b15f4f9295
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/manager.hpp b/manager.hpp
index ec29c79..380f888 100644
--- a/manager.hpp
+++ b/manager.hpp
@@ -179,9 +179,8 @@
     /** @brief Add or update interfaces on DBus. */
     void updateInterfaces(const sdbusplus::message::object_path& path,
                           const Object& interfaces,
-                          ObjectReferences::iterator pos,
-                          bool emitSignals = true,
-                          bool restoreFromCache = false);
+                          ObjectReferences::iterator pos, bool emitSignals,
+                          bool restoreFromCache);
 
     /** @brief Provided for testing only. */
     volatile bool _shutdown;