Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
dynamic-graph
Commits
9eb3f66c
Commit
9eb3f66c
authored
Sep 02, 2021
by
Guilhem Saurel
Browse files
update deprecations for C++14
parent
8d3641ba
Changes
2
Hide whitespace changes
Inline
Side-by-side
include/dynamic-graph/logger.h
View file @
9eb3f66c
...
...
@@ -221,15 +221,16 @@ public:
* stream(type, lineId) << msg << '\n';
* \endcode
*/
void
sendMsg
(
std
::
string
msg
,
MsgType
type
,
const
std
::
string
&
lineId
=
""
);
[[
deprecated
(
"use stream(type, lineId) << msg"
)]]
void
sendMsg
(
std
::
string
msg
,
MsgType
type
,
const
std
::
string
&
lineId
=
""
);
/** \deprecated instead, use
* \code
* stream(type, lineId) << msg << '\n';
* \endcode
*/
void
sendMsg
(
std
::
string
msg
,
MsgType
type
,
const
std
::
string
&
file
,
int
line
)
DYNAMIC_GRAPH_DEPRECATED
;
[[
deprecated
(
"use stream(type, lineId) << msg"
)]]
void
sendMsg
(
std
::
string
msg
,
MsgType
type
,
const
std
::
string
&
file
,
int
line
)
;
/** Set the sampling time at which the method countdown()
* is going to be called. */
...
...
include/dynamic-graph/signal-ptr.h
View file @
9eb3f66c
...
...
@@ -9,8 +9,6 @@
#include <dynamic-graph/exception-signal.h>
#include <dynamic-graph/signal.h>
#include <dynamic-graph/deprecated.hh>
namespace
dynamicgraph
{
/// \ingroup dgraph
///
...
...
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