This file is indexed.

/usr/include/CiftiLib/Common/CiftiAssert.h is in libcifti-dev 1.5.1-1build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#ifndef __CARET_ASSERT_H__
#define __CARET_ASSERT_H__

//some minimal adaptation to cassert
#include <cassert>

#define CiftiAssert(i) assert(i)

#define CiftiAssertVectorIndex(v, i) assert((i) >= 0 && (i) < static_cast<int64_t>((v).size()))

#endif //__CARET_ASSERT_H__