Remove extra semicolons.

This commit is contained in:
Jared Boone 2015-11-20 11:11:14 -08:00
parent 600a983d5c
commit d96379dc9c

View File

@ -38,7 +38,7 @@ struct buffer_t {
count { count }, count { count },
sampling_rate { 0 } sampling_rate { 0 }
{ {
}; }
constexpr buffer_t( constexpr buffer_t(
T* const p, T* const p,
@ -48,7 +48,7 @@ struct buffer_t {
count { count }, count { count },
sampling_rate { sampling_rate } sampling_rate { sampling_rate }
{ {
}; }
}; };
#endif/*__BUFFER_H__*/ #endif/*__BUFFER_H__*/