Change include guards in quantum/ to pragma once ()

This commit is contained in:
Ryan 2020-12-26 15:53:12 +11:00 committed by GitHub
parent 53eb7f0774
commit 48f4768d33
Failed to generate hash of commit
50 changed files with 68 additions and 204 deletions
quantum/visualizer

View file

@ -22,8 +22,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#ifndef VISUALIZER_H
#define VISUALIZER_H
#pragma once
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
@ -152,5 +152,3 @@ void user_visualizer_suspend(visualizer_state_t* state);
void initialize_user_visualizer(visualizer_state_t* state);
// Called when the computer resumes from a suspend
void user_visualizer_resume(visualizer_state_t* state);
#endif /* VISUALIZER_H */