Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Christopher Rob Jones
Gaudi
Commits
03db1510
Commit
03db1510
authored
May 06, 2022
by
Marco Clemencic
Browse files
Use ofstream from std
See merge request
gaudi/Gaudi!1335
parents
2e63edf3
cb3ae4ac
Pipeline
#3951349
passed with stages
in 16 minutes and 12 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
GaudiHive/src/PRGraph/PrecedenceRulesGraph.cpp
View file @
03db1510
...
...
@@ -629,7 +629,7 @@ namespace concurrency {
//---------------------------------------------------------------------------
void
PrecedenceRulesGraph
::
dumpPrecRules
(
const
boost
::
filesystem
::
path
&
fileName
,
const
EventSlot
&
slot
)
{
boost
::
filesystem
::
ofstream
myfile
;
std
::
ofstream
myfile
;
myfile
.
open
(
fileName
,
std
::
ios
::
app
);
// Declare properties to dump
...
...
@@ -670,7 +670,7 @@ namespace concurrency {
//---------------------------------------------------------------------------
void
PrecedenceRulesGraph
::
dumpPrecTrace
(
const
boost
::
filesystem
::
path
&
fileName
,
const
EventSlot
&
slot
)
{
boost
::
filesystem
::
ofstream
myfile
;
std
::
ofstream
myfile
;
myfile
.
open
(
fileName
,
std
::
ios
::
app
);
// Fill runtimes (as this could not be done on the fly during trace assembling)
...
...
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