1
क्लास बग - क्लास बग - क्लास अपनी निजी स्टैटिक कॉन्स्टेक्ट पद्धति का उपयोग नहीं कर सकता है?
यह कोड क्लैंग (6,7,8,9, ट्रंक) में संकलित नहीं है, लेकिन जीसीसी (7.1, 8.1, 9.1) में ठीक संकलित करता है: template<class T> struct TypeHolder { using type = T; }; template<int i> class Outer { private: template<class T> static constexpr auto compute_type() { if constexpr (i == 42) { return TypeHolder<bool>{}; …