Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/include/debug.h

    rdd870b1 r0843f02  
    3737
    3838#include <panic.h>
    39 #include <symtab_lookup.h>
     39#include <symtab.h>
    4040
    4141#define CALLER  ((uintptr_t) __builtin_return_address(0))
     
    7777        } while (0)
    7878
    79 /** Static assert macro
    80  *
    81  */
    82 #define STATIC_ASSERT(expr) \
    83         _Static_assert(expr, "")
    84 
    85 #define STATIC_ASSERT_VERBOSE(expr, msg) \
    86         _Static_assert(expr, msg)
    87 
    88 
    8979#else /* CONFIG_DEBUG */
    9080
    9181#define ASSERT(expr)
    9282#define ASSERT_VERBOSE(expr, msg)
    93 #define STATIC_ASSERT(expr)
    94 #define STATIC_ASSERT_VERBOSE(expr, msg)
    9583
    9684#endif /* CONFIG_DEBUG */
Note: See TracChangeset for help on using the changeset viewer.