Skip to content
This repository has been archived by the owner on May 29, 2022. It is now read-only.

C++17 (replace throw with noexcept) #69

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

htyeim
Copy link

@htyeim htyeim commented Mar 28, 2020

Only replace throw with noexcept and can be compiled with set(CMAKE_CXX_STANDARD 17) in CMakeLists.txt.


/// Converts Rinex3NavData to a GPSEphemeris object.
operator GPSEphemeris() const throw();
operator GPSEphemeris() const;// noexcept;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
operator GPSEphemeris() const;// noexcept;
operator GPSEphemeris() const noexcept;


/// Converts this Rinex3NavData to a GloEphemeris object.
operator GloEphemeris() const throw();
operator GloEphemeris() const;// noexcept;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
operator GloEphemeris() const;// noexcept;
operator GloEphemeris() const noexcept;


/// Converts Rinex3NavData to a GalEphemeris object.
operator GalEphemeris() const throw();
operator GalEphemeris() const;// noexcept;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
operator GalEphemeris() const;// noexcept;
operator GalEphemeris() const noexcept;


/// Converts Rinex3NavData to a BDSEphemeris object.
operator BDSEphemeris() const throw();
operator BDSEphemeris() const;// noexcept;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
operator BDSEphemeris() const;// noexcept;
operator BDSEphemeris() const noexcept;


/// Converts Rinex3NavData to a QZSEphemeris object.
operator QZSEphemeris() const throw();
operator QZSEphemeris() const;// noexcept;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
operator QZSEphemeris() const;// noexcept;
operator QZSEphemeris() const noexcept;

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants