From 5d2660f113b7bfccf451ac291c9325fef91fb266 Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Mon, 22 Jan 2001 21:11:35 +0000 Subject: [PATCH] minor fix: move "static" storage specifier to the front of a declaration [SVN r8714] --- numeric_traits_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numeric_traits_test.cpp b/numeric_traits_test.cpp index 170f61c..c04c75b 100644 --- a/numeric_traits_test.cpp +++ b/numeric_traits_test.cpp @@ -159,7 +159,7 @@ template <> struct stream_as { // Standard promotion process for streaming template struct promote { - typename stream_as::t1 static from(T x) { + static typename stream_as::t1 from(T x) { typedef typename stream_as::t1 t1; return t1(x); }