Skip to content
GitLab
Menu
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
7b9663e5
Commit
7b9663e5
authored
Aug 06, 2003
by
Brad King
Browse files
Fixed indentation
parent
60f9816f
Changes
1
Show whitespace changes
Inline
Side-by-side
Source/kwsys/SystemTools.cxx
View file @
7b9663e5
...
@@ -821,10 +821,10 @@ bool SystemTools::FilesDiffer(const char* source,
...
@@ -821,10 +821,10 @@ bool SystemTools::FilesDiffer(const char* source,
}
}
#if defined(_WIN32) || defined(__CYGWIN__)
#if defined(_WIN32) || defined(__CYGWIN__)
kwsys_std
::
ifstream
finSource
(
source
,
kwsys_std
::
ifstream
finSource
(
source
,
(
kwsys_std
::
ios
::
binary
|
kwsys_std
::
ios
::
binary
|
kwsys_std
::
ios
::
in
);
kwsys_std
::
ios
::
in
)
)
;
kwsys_std
::
ifstream
finDestination
(
destination
,
kwsys_std
::
ifstream
finDestination
(
destination
,
(
kwsys_std
::
ios
::
binary
|
kwsys_std
::
ios
::
binary
|
kwsys_std
::
ios
::
in
);
kwsys_std
::
ios
::
in
)
)
;
#else
#else
kwsys_std
::
ifstream
finSource
(
source
);
kwsys_std
::
ifstream
finSource
(
source
);
kwsys_std
::
ifstream
finDestination
(
destination
);
kwsys_std
::
ifstream
finDestination
(
destination
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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