Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
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
RadioObservatory
LOFAR
Commits
60beb61f
Commit
60beb61f
authored
15 years ago
by
Marcel Loose
Browse files
Options
Downloads
Patches
Plain Diff
Bug 1361: Added missing include. Fixed uint vs. size_t bug.
parent
44883010
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MAC/APL/APLCommon/src/APLUtilities.cc
+1
-0
1 addition, 0 deletions
MAC/APL/APLCommon/src/APLUtilities.cc
MAC/APL/APLCommon/src/ControllerDefines.cc
+1
-1
1 addition, 1 deletion
MAC/APL/APLCommon/src/ControllerDefines.cc
with
2 additions
and
1 deletion
MAC/APL/APLCommon/src/APLUtilities.cc
+
1
−
0
View file @
60beb61f
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
#include
<lofar_config.h>
#include
<lofar_config.h>
#include
<Common/LofarLogger.h>
#include
<Common/LofarLogger.h>
#include
<Common/StringUtil.h>
#include
<Common/StringUtil.h>
#include
<climits>
#include
<unistd.h>
#include
<unistd.h>
#include
"APL/APLCommon/APLUtilities.h"
#include
"APL/APLCommon/APLUtilities.h"
...
...
This diff is collapsed.
Click to expand it.
MAC/APL/APLCommon/src/ControllerDefines.cc
+
1
−
1
View file @
60beb61f
...
@@ -247,7 +247,7 @@ string createPropertySetName(const string& propSetMask,
...
@@ -247,7 +247,7 @@ string createPropertySetName(const string& propSetMask,
const
string
&
realDPname
)
const
string
&
realDPname
)
{
{
string
psName
(
propSetMask
);
// editable copy
string
psName
(
propSetMask
);
// editable copy
uint
pos
;
string
::
size_type
pos
;
// when name contains @ring@_@station@ cut out this marker and prepend hostname
// when name contains @ring@_@station@ cut out this marker and prepend hostname
// stationname+: -> LOFAR_ObsSW_@ring@_@station@_CalCtrl_xxx --> CS010:LOFAR_ObsSW_CalCtrl_xxx
// stationname+: -> LOFAR_ObsSW_@ring@_@station@_CalCtrl_xxx --> CS010:LOFAR_ObsSW_CalCtrl_xxx
if
((
pos
=
psName
.
find
(
"@ring@_@station@_"
))
!=
string
::
npos
)
{
if
((
pos
=
psName
.
find
(
"@ring@_@station@_"
))
!=
string
::
npos
)
{
...
...
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