From 6e91e275bb1d974a575a7c692c080ed00f3a825e Mon Sep 17 00:00:00 2001 From: onihusube <44743040+onihusube@users.noreply.github.com> Date: Wed, 17 Jul 2019 22:46:24 +0900 Subject: [PATCH] [basic.lookup.argdep]/5 add export to apply() fix #2968 --- source/basic.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/basic.tex b/source/basic.tex index dac414469e..e5d6564868 100644 --- a/source/basic.tex +++ b/source/basic.tex @@ -1858,7 +1858,7 @@ import M; export R::X make(); namespace R { static int g(X); } -template void apply(T t, U u) { +export template void apply(T t, U u) { f(t, u); g(t); }