
This is a followup to regression introduced in r284284. This should fix our libstdc++ modules builds. https://reviews.llvm.org/D25678 Reviewed by Richard Smith! llvm-svn: 284577
10 lines
173 B
C++
10 lines
173 B
C++
#ifndef B1_H
|
|
#define B1_H
|
|
template<typename T, T v>
|
|
struct S { static constexpr T value = v; };
|
|
template<typename T, T v>
|
|
constexpr T S<T, v>::value;
|
|
|
|
#include "a.h"
|
|
#endif
|