I would prefer a more compicated variadic template test that exercises
variadic code such as:


template<typename G = void, typename H = void>
struct foo
{};

template<typename... G>
struct bar : foo<G...>
{};

int main() {
  bar<int, float> f;
}

So that we detect compilers like gcc 4.6 that supported the initial
variadic specification, and not the updated specification.



On Thu, Jan 10, 2013 at 10:49 AM, Rolf Eike Beer <e...@sf-mail.de> wrote:

> git://anongit.kde.org/scratch/**dakon/cmake-cxx11<http://anongit.kde.org/scratch/dakon/cmake-cxx11>
>




-- 
Robert Maynard
--

Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-developers

Reply via email to