| 795 | { |
| 796 | template<typename... Args> |
| 797 | ClassicLocaleStream(Args&&... args) : T(std::forward<Args>(args)...) |
| 798 | { |
| 799 | this->imbue(std::locale::classic()); |
| 800 | } |
| 801 | }; |
| 802 | |
| 803 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected