mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-12-23 21:25:49 +00:00
fix coding styles
This commit is contained in:
parent
a2b368a7cc
commit
e3e130f58d
80 changed files with 255 additions and 255 deletions
|
@ -24,22 +24,22 @@ namespace sprout {
|
|||
SPROUT_STATIC_CONSTEXPR std::size_t xdigit = 1 << 10;
|
||||
SPROUT_STATIC_CONSTEXPR std::size_t table_size = 0x80;
|
||||
SPROUT_STATIC_CONSTEXPR std::size_t table[sprout::ascii::detail::table_size] = {
|
||||
/* 0x0 NUL */ sprout::ascii::detail::cntrl,
|
||||
/* 0x1 SOH */ sprout::ascii::detail::cntrl,
|
||||
/* 0x2 STX */ sprout::ascii::detail::cntrl,
|
||||
/* 0x3 ETX */ sprout::ascii::detail::cntrl,
|
||||
/* 0x4 EOT */ sprout::ascii::detail::cntrl,
|
||||
/* 0x5 ENQ */ sprout::ascii::detail::cntrl,
|
||||
/* 0x6 ACK */ sprout::ascii::detail::cntrl,
|
||||
/* 0x7 BEL */ sprout::ascii::detail::cntrl,
|
||||
/* 0x8 BS */ sprout::ascii::detail::cntrl,
|
||||
/* 0x9 HT */ sprout::ascii::detail::blank | sprout::ascii::detail::cntrl | sprout::ascii::detail::space,
|
||||
/* 0xA LF */ sprout::ascii::detail::cntrl | sprout::ascii::detail::space,
|
||||
/* 0xB VT */ sprout::ascii::detail::cntrl | sprout::ascii::detail::space,
|
||||
/* 0xC FF */ sprout::ascii::detail::cntrl | sprout::ascii::detail::space,
|
||||
/* 0xD CR */ sprout::ascii::detail::cntrl | sprout::ascii::detail::space,
|
||||
/* 0xE SO */ sprout::ascii::detail::cntrl,
|
||||
/* 0xF SI */ sprout::ascii::detail::cntrl,
|
||||
/* 0x00 NUL */ sprout::ascii::detail::cntrl,
|
||||
/* 0x01 SOH */ sprout::ascii::detail::cntrl,
|
||||
/* 0x02 STX */ sprout::ascii::detail::cntrl,
|
||||
/* 0x03 ETX */ sprout::ascii::detail::cntrl,
|
||||
/* 0x04 EOT */ sprout::ascii::detail::cntrl,
|
||||
/* 0x05 ENQ */ sprout::ascii::detail::cntrl,
|
||||
/* 0x06 ACK */ sprout::ascii::detail::cntrl,
|
||||
/* 0x07 BEL */ sprout::ascii::detail::cntrl,
|
||||
/* 0x08 BS */ sprout::ascii::detail::cntrl,
|
||||
/* 0x09 HT */ sprout::ascii::detail::blank | sprout::ascii::detail::cntrl | sprout::ascii::detail::space,
|
||||
/* 0x0A LF */ sprout::ascii::detail::cntrl | sprout::ascii::detail::space,
|
||||
/* 0x0B VT */ sprout::ascii::detail::cntrl | sprout::ascii::detail::space,
|
||||
/* 0x0C FF */ sprout::ascii::detail::cntrl | sprout::ascii::detail::space,
|
||||
/* 0x0D CR */ sprout::ascii::detail::cntrl | sprout::ascii::detail::space,
|
||||
/* 0x0E SO */ sprout::ascii::detail::cntrl,
|
||||
/* 0x0F SI */ sprout::ascii::detail::cntrl,
|
||||
/* 0x10 DLE */ sprout::ascii::detail::cntrl,
|
||||
/* 0x11 DC1 */ sprout::ascii::detail::cntrl,
|
||||
/* 0x12 DC2 */ sprout::ascii::detail::cntrl,
|
||||
|
|
|
@ -248,4 +248,4 @@ namespace sprout {
|
|||
} // namespace math
|
||||
} // namespace boost
|
||||
|
||||
#endif // SPROUT_MATH_GCD_HPP
|
||||
#endif // #ifndef SPROUT_MATH_GCD_HPP
|
||||
|
|
|
@ -107,4 +107,4 @@ namespace sprout {
|
|||
} // namespace math
|
||||
} // namespace boost
|
||||
|
||||
#endif // SPROUT_MATH_LCM_HPP
|
||||
#endif // #ifndef SPROUT_MATH_LCM_HPP
|
||||
|
|
|
@ -11,4 +11,4 @@
|
|||
#include <sprout/rational/conversion.hpp>
|
||||
#include <sprout/rational/exceptions.hpp>
|
||||
|
||||
#endif // SPROUT_RATIONAL_HPP
|
||||
#endif // #ifndef SPROUT_RATIONAL_HPP
|
||||
|
|
Loading…
Reference in a new issue