mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Replace all include guard ifdefs with "#pragma once"
This commit is contained in:
@ -5,8 +5,8 @@
|
||||
// This is currently only used by the DX backend, but it may make sense to
|
||||
// use it in the GL backend or a future DX10 backend too.
|
||||
|
||||
#ifndef _INDEXGENERATOR_H
|
||||
#define _INDEXGENERATOR_H
|
||||
#pragma once
|
||||
|
||||
#include "CommonTypes.h"
|
||||
|
||||
class IndexGenerator
|
||||
@ -45,5 +45,3 @@ private:
|
||||
static u16 *BASEIptr;
|
||||
static u32 base_index;
|
||||
};
|
||||
|
||||
#endif // _INDEXGENERATOR_H
|
||||
|
Reference in New Issue
Block a user