minor fix: move "static" storage specifier to the front of a declaration

[SVN r8714]
This commit is contained in:
Jens Maurer 2001-01-22 21:11:35 +00:00
parent 16334e92ca
commit 2470b53373

View File

@ -159,7 +159,7 @@ template <> struct stream_as<boost::intmax_t> {
// Standard promotion process for streaming
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;
return t1(x);
}