Closed Ahmad-Bamba closed 7 years ago
In every .h file in the repo right now, there is a set of two lines in the beginning and one at the end which look like this:
#ifndef [file] #define [file] ... #endif
These need to all be replaced with a single #pragma once at the top of the file.
#pragma once
So I delete the
...
and type a #pragma one on the top?
right?
Ok thanks
Thank you!
In every .h file in the repo right now, there is a set of two lines in the beginning and one at the end which look like this:
These need to all be replaced with a single
#pragma once
at the top of the file.