Answers for "cpp anonymous namespace"

C++
0

alias namespaces c++

// Instead of
boost::numeric::ublas::vector<double> v;

// Use namespace aliasing
namespace ublas = boost::numeric::ublas;

ublas::vector<double> v;
Posted by: Guest on December-13-2020

Browse Popular Code Answers by Language