mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-02-11 10:03:59 +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 fit
|
||||||
} // namespace sprout
|
} // namespace sprout
|
||||||
|
|
||||||
|
#include <sprout/numeric/dft/fit/phase_spectrum.hpp>
|
||||||
|
|
||||||
#endif // #ifndef SPROUT_NUMERIC_DFT_FIT_SPECTRUM_HPP
|
#endif // #ifndef SPROUT_NUMERIC_DFT_FIT_SPECTRUM_HPP
|
||||||
|
|
|
@ -25,4 +25,6 @@ namespace sprout {
|
||||||
using sprout::fixed::spectrum;
|
using sprout::fixed::spectrum;
|
||||||
} // namespace sprout
|
} // namespace sprout
|
||||||
|
|
||||||
|
#include <sprout/numeric/dft/fixed/phase_spectrum.hpp>
|
||||||
|
|
||||||
#endif // #ifndef SPROUT_NUMERIC_DFT_FIXED_SPECTRUM_HPP
|
#endif // #ifndef SPROUT_NUMERIC_DFT_FIXED_SPECTRUM_HPP
|
||||||
|
|
|
@ -12,7 +12,8 @@ namespace sprout {
|
||||||
// operator<<
|
// operator<<
|
||||||
//
|
//
|
||||||
template<typename T, std::size_t N, typename Traits, typename StreamTraits>
|
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 T elem_type;
|
||||||
typedef StreamTraits traits_type;
|
typedef StreamTraits traits_type;
|
||||||
typedef std::basic_istream<T, StreamTraits> istream_type;
|
typedef std::basic_istream<T, StreamTraits> istream_type;
|
||||||
|
@ -57,7 +58,8 @@ namespace sprout {
|
||||||
return lhs;
|
return lhs;
|
||||||
}
|
}
|
||||||
template<typename T, std::size_t N, typename Traits, typename StreamTraits>
|
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();
|
return lhs << rhs.c_str();
|
||||||
}
|
}
|
||||||
} // namespace sprout
|
} // namespace sprout
|
||||||
|
|
Loading…
Add table
Reference in a new issue