Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
57c97f62
Commit
57c97f62
authored
Jan 09, 2003
by
Bill Hoffman
Browse files
fix syntax for addwatch
parent
6593700f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmVariableWatch.h
View file @
57c97f62
...
...
@@ -27,7 +27,7 @@
class
cmVariableWatch
{
public:
typedef
void
(
WatchMethod
)(
const
std
::
string
&
variable
,
int
access_type
,
void
*
client_data
);
typedef
void
(
*
WatchMethod
)(
const
std
::
string
&
variable
,
int
access_type
,
void
*
client_data
);
cmVariableWatch
();
~
cmVariableWatch
();
...
...
@@ -57,7 +57,7 @@ public:
protected:
struct
Pair
{
WatchMethod
*
m_Method
;
WatchMethod
m_Method
;
void
*
m_ClientData
;
Pair
()
:
m_Method
(
0
),
m_ClientData
(
0
)
{}
};
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment