Skip to content

Commit ec1f80f

Browse files
committed
misc comment updates
1 parent ef14938 commit ec1f80f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

inc/osvr/Common/ClientContext.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

inc/osvr/Util/ID.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)