Skip to content
Snippets Groups Projects
Commit 6bf1deb6 authored by Deucе's avatar Deucе 👌🏾
Browse files

Spell static_assert the modern way.

parent 2760bfe1
No related branches found
No related tags found
No related merge requests found
Pipeline #7444 passed
#ifndef DEUCE_SSH_H
#define DEUCE_SSH_H
#include <assert.h>
#ifdef __STDC_NO_ATOMICS__
_Static_assert(0, "stdatomic.h support required");
static_assert(0, "stdatomic.h support required");
#endif
#ifdef __STDC_NO_THREADS__
_Static_assert(0, "threads.h support required");
static_assert(0, "threads.h support required");
#endif
#include <inttypes.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment