$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [units] Creating a velocity unit
From: Ryan (boost_at_[hidden])
Date: 2013-02-25 19:16:48
Steven,
I didn't notice I was getting a linking error for the following code that
we discussed. It compiles fine but has an "unresolved external symbol" for
the following.
class A
{
static const metric::nautical_mile_base_unit::unit_type nautical_miles;
static const metric::hour_base_unit::unit_type hours;
static const decltype(nautical_miles / hours) nautical_miles_per_hour;
};
If I move these lines outside the class everything compiles and links fine.
What am I missing here?
Ryan