summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/netlist/plib/ptypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/netlist/plib/ptypes.h')
-rw-r--r--src/lib/netlist/plib/ptypes.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/netlist/plib/ptypes.h b/src/lib/netlist/plib/ptypes.h
index afc25bc0d0a..d34651b9f70 100644
--- a/src/lib/netlist/plib/ptypes.h
+++ b/src/lib/netlist/plib/ptypes.h
@@ -1,13 +1,13 @@
// license:GPL-2.0+
// copyright-holders:Couriersud
-/*
- * ptypes.h
- *
- */
#ifndef PTYPES_H_
#define PTYPES_H_
+///
+/// \file ptypes.h
+///
+
#include "pconfig.h"
#include <limits>
@@ -30,7 +30,7 @@ namespace plib
template<typename T> struct is_integral : public std::is_integral<T> { };
template<typename T> struct numeric_limits : public std::numeric_limits<T> { };
- /* 128 bit support at least on GCC is not fully supported */
+ // 128 bit support at least on GCC is not fully supported
#if PHAS_INT128
template<> struct is_integral<UINT128> { static constexpr bool value = true; };
template<> struct is_integral<INT128> { static constexpr bool value = true; };
@@ -149,4 +149,4 @@ namespace plib
static constexpr const bool value = sizeof(test<T>(nullptr)) == sizeof(long); \
}
-#endif /* PTYPES_H_ */
+#endif // PTYPES_H_