2
0
mirror of https://github.com/boostorg/lambda.git synced 2026-01-24 18:02:22 +00:00

RET static -> static RET

[SVN r11735]
This commit is contained in:
Jaakko Järvi
2001-11-19 22:11:10 +00:00
parent 273f83d01d
commit 7dd0e88f2b

View File

@@ -28,7 +28,7 @@ namespace lambda {
template<> struct return_void_action<other_action<identity_action> > {
template<class RET, class A>
RET static apply(A& a) { a; }
static RET apply(A& a) { a; }
};