Add header guard to conversions.h

This commit is contained in:
Matt McCormick 2016-02-10 16:54:09 -05:00
parent 7eef3670e0
commit e50d34873f

@ -16,6 +16,9 @@
* limitations under the License.
*/
#ifndef CONVERSIONS_H_
#define CONVERSIONS_H_
enum
{
BYTES = 0,
@ -33,3 +36,5 @@ inline T convert_unit( T num, int to, int from = BYTES)
}
return num;
}
#endif