Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
c9741c51
Commit
c9741c51
authored
Mar 02, 2015
by
Marcin Siodelski
Browse files
[3706] Fixed the two typos in the comments of ProcessSpawn.
parent
15860010
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/lib/util/process_spawn.cc
View file @
c9741c51
...
...
@@ -34,8 +34,8 @@ namespace util {
/// This class is made noncopyable so that we don't have attempts
/// to make multiple copies of an object. This avoid problems
/// with multiple copies of objects for a single global resource
/// such as the SIGCHLD signal handler.
In addition making it
/// noncopyable keeps the static check cod
d
from flagging the
/// such as the SIGCHLD signal handler. In addition making it
/// noncopyable keeps the static check cod
e
from flagging the
/// lack of a copy constructor as an issue.
class
ProcessSpawnImpl
:
boost
::
noncopyable
{
public:
...
...
src/lib/util/process_spawn.h
View file @
c9741c51
...
...
@@ -57,8 +57,8 @@ typedef std::vector<std::string> ProcessArgs;
/// This class is made noncopyable so that we don't have attempts
/// to make multiple copies of an object. This avoid problems
/// with multiple copies of objects for a single global resource
/// such as the SIGCHLD signal handler.
In addition making it
/// noncopyable keeps the static check cod
d
from flagging the
/// such as the SIGCHLD signal handler. In addition making it
/// noncopyable keeps the static check cod
e
from flagging the
/// lack of a copy constructor as an issue.
///
/// @todo The SIGCHLD handling logic should be moved to the @c SignalSet
...
...
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