Use nested namespace

It's a mechanical change to modernize the code base
This commit is contained in:
Dennis Luxen
2022-12-11 10:10:26 +01:00
parent 152a52bc1a
commit a4aa153ba4
456 changed files with 469 additions and 2474 deletions
@@ -8,11 +8,7 @@
#include <boost/math/constants/constants.hpp>
namespace osrm
{
namespace engine
{
namespace map_matching
namespace osrm::engine::map_matching
{
struct NormalDistribution
@@ -98,8 +94,6 @@ class BayesClassifier
double positive_apriori_probability;
double negative_apriori_probability;
};
} // namespace map_matching
} // namespace engine
} // namespace osrm
#endif // BAYES_CLASSIFIER_HPP
@@ -11,11 +11,7 @@
#include <limits>
#include <vector>
namespace osrm
{
namespace engine
{
namespace map_matching
namespace osrm::engine::map_matching
{
static const double log_2_pi = std::log(2. * boost::math::constants::pi<double>());
@@ -137,8 +133,6 @@ template <class CandidateLists> struct HiddenMarkovModel
return initial_timestamp;
}
};
} // namespace map_matching
} // namespace engine
} // namespace osrm
#endif // HIDDEN_MARKOV_MODEL
@@ -5,11 +5,7 @@
#include <cmath>
namespace osrm
{
namespace engine
{
namespace map_matching
namespace osrm::engine::map_matching
{
struct MatchingConfidence
@@ -51,8 +47,6 @@ struct MatchingConfidence
private:
ClassifierT classifier;
};
} // namespace map_matching
} // namespace engine
} // namespace osrm
#endif
+1 -7
View File
@@ -5,11 +5,7 @@
#include <vector>
namespace osrm
{
namespace engine
{
namespace map_matching
namespace osrm::engine::map_matching
{
struct SubMatching
@@ -19,8 +15,6 @@ struct SubMatching
std::vector<unsigned> alternatives_count;
double confidence;
};
} // namespace map_matching
} // namespace engine
} // namespace osrm
#endif