Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
f9273bd3
Commit
f9273bd3
authored
13 years ago
by
Campbell, Stuart
Browse files
Options
Downloads
Patches
Plain Diff
Prefer prefix ++/-- operators for non-primitive types. refs #3868
parent
129b3c1d
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Code/Mantid/Vates/VatesAPI/src/EventNexusLoadingPresenter.cpp
+1
-1
1 addition, 1 deletion
.../Mantid/Vates/VatesAPI/src/EventNexusLoadingPresenter.cpp
Code/Mantid/Vates/VatesAPI/src/SynchronisingGeometryPresenter.cpp
+2
-2
2 additions, 2 deletions
...tid/Vates/VatesAPI/src/SynchronisingGeometryPresenter.cpp
with
3 additions
and
3 deletions
Code/Mantid/Vates/VatesAPI/src/EventNexusLoadingPresenter.cpp
+
1
−
1
View file @
f9273bd3
...
...
@@ -60,7 +60,7 @@ namespace Mantid
std
::
map
<
std
::
string
,
std
::
string
>
entries
=
file
->
getEntries
();
bool
hasEvents
=
false
;
std
::
map
<
std
::
string
,
std
::
string
>::
iterator
it
;
for
(
it
=
entries
.
begin
();
it
!=
entries
.
end
();
it
++
)
for
(
it
=
entries
.
begin
();
it
!=
entries
.
end
();
++
it
)
{
if
(
it
->
first
.
find
(
"_events"
)
!=
std
::
string
::
npos
)
{
...
...
This diff is collapsed.
Click to expand it.
Code/Mantid/Vates/VatesAPI/src/SynchronisingGeometryPresenter.cpp
+
2
−
2
View file @
f9273bd3
...
...
@@ -243,7 +243,7 @@ namespace Mantid
if
(
i
==
m_dimensions
.
end
())
break
;
matches
.
push_back
(
*
i
);
i
++
;
++
i
;
}
return
matches
;
}
...
...
@@ -263,7 +263,7 @@ namespace Mantid
if
(
i
==
m_dimensions
.
end
())
break
;
matches
.
push_back
(
*
i
);
i
++
;
++
i
;
}
return
matches
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment