StorageManager: replace header guard with pragma once

This commit is contained in:
Lucas De Marchi 2016-02-17 23:25:57 -02:00
parent 98904825cb
commit bf9cf74c38

View File

@ -19,9 +19,7 @@
Management for hal.storage to allow for backwards compatible mapping Management for hal.storage to allow for backwards compatible mapping
of storage offsets to available storage of storage offsets to available storage
*/ */
#pragma once
#ifndef _STORAGEMANAGER_H_
#define _STORAGEMANAGER_H_
#include <AP_HAL/AP_HAL.h> #include <AP_HAL/AP_HAL.h>
@ -99,5 +97,3 @@ private:
const StorageManager::StorageType type; const StorageManager::StorageType type;
uint16_t total_size; uint16_t total_size;
}; };
#endif // _STORAGEMANAGER_H_