forked from boostorg/utility
minor fix: move "static" storage specifier to the front of a declaration
[SVN r8714]
This commit is contained in:
@@ -159,7 +159,7 @@ template <> struct stream_as<boost::intmax_t> {
|
|||||||
// Standard promotion process for streaming
|
// Standard promotion process for streaming
|
||||||
template <class T> struct promote
|
template <class T> struct promote
|
||||||
{
|
{
|
||||||
typename stream_as<T>::t1 static from(T x) {
|
static typename stream_as<T>::t1 from(T x) {
|
||||||
typedef typename stream_as<T>::t1 t1;
|
typedef typename stream_as<T>::t1 t1;
|
||||||
return t1(x);
|
return t1(x);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user