Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
vite
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
solverstack
vite
Commits
17ddd2c0
Commit
17ddd2c0
authored
Mar 07, 2009
by
Kevin Coulomb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correction de l'utilisation du namespace dans le .hpp de maniere a ce
que cela fonctionne
parent
8628004c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/trace/DrawTrace.hpp
src/trace/DrawTrace.hpp
+3
-2
No files found.
src/trace/DrawTrace.hpp
View file @
17ddd2c0
...
...
@@ -12,7 +12,7 @@
#include "../interface/render_area.hpp"
#include "../message/message_ns.hpp"
using
namespace
message_ns
;
//
using namespace message_ns;
/*!
* \brief
...
...
@@ -172,7 +172,8 @@ public:
if
(
container
==
NULL
)
{
// std::cerr << "The trace can not be shown because there are no containers." << std::endl;
message
<<
"Error a container does not exist. Cannot display the trace"
<<
ende
;
message_ns
::
message
<<
"Error a container does not exist. Cannot display the trace"
;
message_ns
::
operator
<<
(
message_ns
::
message
,
message_ns
::
ende
);
return
;
}
if
(
number_of_children
(
container
)
<=
1
)
...
...
Write
Preview
Markdown
is supported
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