Go to the documentation of this file.
23#ifndef GINAC_COMPILER_H
24#define GINAC_COMPILER_H
27#define unlikely(cond) __builtin_expect((cond), 0)
28#define likely(cond) __builtin_expect((cond), 1)
29#define attribute_deprecated __attribute__ ((deprecated))
31#define unlikely(cond) (cond)
32#define likely(cond) (cond)
33#define attribute_deprecated
This page is part of the GiNaC
developer's reference. It was generated automatically by doxygen. For
an introduction, see the tutorial.