mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-02-09 09:53:57 +00:00
fix spectrum includes
This commit is contained in:
parent
5918f1c773
commit
01ac3f7646
3 changed files with 8 additions and 2 deletions
|
@ -22,4 +22,6 @@ namespace sprout {
|
|||
} // namespace fit
|
||||
} // namespace sprout
|
||||
|
||||
#include <sprout/numeric/dft/fit/phase_spectrum.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_NUMERIC_DFT_FIT_SPECTRUM_HPP
|
||||
|
|
|
@ -25,4 +25,6 @@ namespace sprout {
|
|||
using sprout::fixed::spectrum;
|
||||
} // namespace sprout
|
||||
|
||||
#include <sprout/numeric/dft/fixed/phase_spectrum.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_NUMERIC_DFT_FIXED_SPECTRUM_HPP
|
||||
|
|
|
@ -12,7 +12,8 @@ namespace sprout {
|
|||
// operator<<
|
||||
//
|
||||
template<typename T, std::size_t N, typename Traits, typename StreamTraits>
|
||||
inline std::basic_istream<T, StreamTraits>& operator>>(std::basic_istream<T, StreamTraits>& lhs, sprout::basic_string<T, N, Traits>& rhs) {
|
||||
inline std::basic_istream<T, StreamTraits>&
|
||||
operator>>(std::basic_istream<T, StreamTraits>& lhs, sprout::basic_string<T, N, Traits>& rhs) {
|
||||
typedef T elem_type;
|
||||
typedef StreamTraits traits_type;
|
||||
typedef std::basic_istream<T, StreamTraits> istream_type;
|
||||
|
@ -57,7 +58,8 @@ namespace sprout {
|
|||
return lhs;
|
||||
}
|
||||
template<typename T, std::size_t N, typename Traits, typename StreamTraits>
|
||||
inline std::basic_ostream<T, StreamTraits>& operator<<(std::basic_ostream<T, StreamTraits>& lhs, sprout::basic_string<T, N, Traits> const& rhs) {
|
||||
inline std::basic_ostream<T, StreamTraits>&
|
||||
operator<<(std::basic_ostream<T, StreamTraits>& lhs, sprout::basic_string<T, N, Traits> const& rhs) {
|
||||
return lhs << rhs.c_str();
|
||||
}
|
||||
} // namespace sprout
|
||||
|
|
Loading…
Add table
Reference in a new issue