File: static_assert.h

package info (click to toggle)
mergerfs 2.40.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,000 kB
  • sloc: cpp: 58,559; ansic: 17,241; makefile: 348; python: 156; sh: 119
file content (4 lines) | stat: -rw-r--r-- 91 bytes parent folder | download | duplicates (3)
1
2
3
4
#pragma once

#define STATIC_ASSERT(condition) \
	((void)sizeof(char[1 - 2*!(condition)]))