diff --git a/algo/core/check-compiler.h b/algo/core/check-compiler.h index 22fdeacdea1e8806998a9bde8b9cbddd8f7cdc7f..88577df1b08cdc3a25c18a9d20d9f9b83e9348b3 100644 --- a/algo/core/check-compiler.h +++ b/algo/core/check-compiler.h @@ -4,10 +4,10 @@ #if defined(__clang__) #if (__clang_major__ * 10000 + __clang_minor__ * 100 + __clang_patchlevel__) < 30300 - #warning "Vidjil needs a C++11 compiler such as clang >= 3.3 - see http://vidjil.org/doc/algo.html" + #warning "Vidjil needs a C++11 compiler such as clang >= 3.3 - see http://vidjil.org/doc/vidjil-algo" #endif #elif defined(__GNUC__) #if (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) < 40800 - #warning "Vidjil needs a C++11 compiler such as gcc >= 4.8 - see http://vidjil.org/doc/algo.html" + #warning "Vidjil needs a C++11 compiler such as gcc >= 4.8 - see http://vidjil.org/doc/vidjil-algo" #endif #endif