Browse Source

[3052] Removed extraneous const function return type.

Debian complained about const Enum function declaration in
D2QueueMgr.
Thomas Markwalder 11 years ago
parent
commit
a33cd74d9c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bin/d2/d2_queue_mgr.h

+ 1 - 1
src/bin/d2/d2_queue_mgr.h

@@ -248,7 +248,7 @@ public:
     void setMaxQueueSize(const size_t max_queue_size);
 
     /// @brief Returns the current state.
-    const State getMgrState() const {
+    State getMgrState() const {
         return (mgr_state_);
     }