mirror of
https://github.com/arun11299/cpp-subprocess.git
synced 2025-08-04 20:36:20 -04:00
Remove trailing semicolons on namespace decls: required to build with -pedantic compiler flag (#45)
This commit is contained in:
parent
6931e3d69f
commit
a5cc965f72
@ -521,7 +521,7 @@ namespace util
|
||||
}
|
||||
#endif
|
||||
|
||||
}; // end namespace util
|
||||
} // end namespace util
|
||||
|
||||
|
||||
|
||||
@ -1068,7 +1068,7 @@ private:
|
||||
Communication comm_;
|
||||
};
|
||||
|
||||
}; // end namespace detail
|
||||
} // end namespace detail
|
||||
|
||||
|
||||
|
||||
@ -1845,7 +1845,7 @@ namespace detail {
|
||||
return std::make_pair(std::move(obuf), std::move(ebuf));
|
||||
}
|
||||
|
||||
}; // end namespace detail
|
||||
} // end namespace detail
|
||||
|
||||
|
||||
|
||||
@ -1954,6 +1954,6 @@ OutBuffer pipeline(Args&&... args)
|
||||
return (pcmds.back().communicate().first);
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
#endif // SUBPROCESS_HPP
|
||||
|
Loading…
x
Reference in New Issue
Block a user