Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed deprecated dynamic exception specifications #1137

Merged
merged 1 commit into from
Aug 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/rosbag_storage/include/rosbag/bag_player.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class BagPlayer
{
public:
/* Constructor expecting the filename of a bag */
BagPlayer(const std::string &filename) throw(BagException);
BagPlayer(const std::string &filename);

/* Register a callback for a specific topic and type */
template<class T>
Expand Down
2 changes: 1 addition & 1 deletion tools/rosbag_storage/src/bag_player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace rosbag
{

BagPlayer::BagPlayer(const std::string &fname) throw(BagException) {
BagPlayer::BagPlayer(const std::string &fname) {
bag.open(fname, rosbag::bagmode::Read);
ros::Time::init();
View v(bag);
Expand Down