File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ struct OSVR_ClientContextObject : boost::noncopyable {
129129 OSVR_COMMON_EXPORT virtual osvr::common::PathTree const &
130130 m_getPathTree () const = 0 ;
131131
132- // / @brief Implementation of accessor for the path tree.
132+ // / @brief Implementation of accessor for the system component
133133 OSVR_COMMON_EXPORT virtual osvr::common::SystemComponent *
134134 m_getSystemComponent () = 0 ;
135135
@@ -153,7 +153,7 @@ namespace common {
153153 delete o;
154154 }
155155 } // namespace
156- } // namespace detail
156+ } // namespace detail
157157
158158 // / @brief Create a subclass object of ClientContext, setting the deleter
159159 // / appropriately by passing it as the last parameter. Compare to
Original file line number Diff line number Diff line change @@ -50,11 +50,11 @@ template <class Tag, class impl> class ID {
5050
5151 bool empty () const { return m_val == 0xffffffff ? true : false ; }
5252
53- operator impl & () {return m_val; }
53+ operator impl &() { return m_val; }
5454 friend bool operator ==(ID a, ID b) { return a.m_val == b.m_val ; }
5555 friend bool operator !=(ID a, ID b) { return a.m_val != b.m_val ; }
5656
57- impl& value () { return m_val; }
57+ impl & value () { return m_val; }
5858 impl value () const { return m_val; }
5959
6060 private:
You can’t perform that action at this time.
0 commit comments