Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
1921e4b3
Commit
1921e4b3
authored
12 years ago
by
Van Herck, Walter
Browse files
Options
Downloads
Patches
Plain Diff
Fixed build errors
parent
01b5d614
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Core/Tools/inc/SafePointerVector.h
+1
-1
1 addition, 1 deletion
Core/Tools/inc/SafePointerVector.h
Core/Tools/src/AxisBin.cpp
+1
-0
1 addition, 0 deletions
Core/Tools/src/AxisBin.cpp
with
2 additions
and
1 deletion
Core/Tools/inc/SafePointerVector.h
+
1
−
1
View file @
1921e4b3
...
@@ -41,7 +41,7 @@ public:
...
@@ -41,7 +41,7 @@ public:
const_iterator
end
()
const
{
return
m_pointers
.
end
();
}
const_iterator
end
()
const
{
return
m_pointers
.
end
();
}
T
*
back
()
{
return
m_pointers
.
back
();
}
T
*
back
()
{
return
m_pointers
.
back
();
}
T
*
const
back
()
const
{
return
m_pointers
.
back
();
}
const
T
*
back
()
const
{
return
m_pointers
.
back
();
}
void
clear
();
void
clear
();
private
:
private
:
std
::
vector
<
T
*>
m_pointers
;
std
::
vector
<
T
*>
m_pointers
;
...
...
This diff is collapsed.
Click to expand it.
Core/Tools/src/AxisBin.cpp
+
1
−
0
View file @
1921e4b3
#include
"AxisBin.h"
#include
"AxisBin.h"
#include
"Numeric.h"
#include
"Numeric.h"
#include
"Exceptions.h"
#include
"Exceptions.h"
#include
<algorithm>
AxisBin
::
AxisBin
(
std
::
string
name
)
AxisBin
::
AxisBin
(
std
::
string
name
)
:
IAxis
(
name
)
:
IAxis
(
name
)
...
...
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