summaryrefslogtreecommitdiff
path: root/src/support/file.h
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2018-11-29 12:51:40 -0800
committerGitHub <noreply@github.com>2018-11-29 12:51:40 -0800
commit5274d943ec65866089f6764af89205d003a15078 (patch)
tree124408fcd21374fb9ca22cef39d0378002161480 /src/support/file.h
parent0b425638bdafe7be7ed914943de931b491881e23 (diff)
downloadbinaryen-5274d943ec65866089f6764af89205d003a15078.tar.gz
binaryen-5274d943ec65866089f6764af89205d003a15078.tar.bz2
binaryen-5274d943ec65866089f6764af89205d003a15078.zip
standardize on 'template<' over 'template <' (i.e., remove a space) (#1782)
Diffstat (limited to 'src/support/file.h')
-rw-r--r--src/support/file.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/support/file.h b/src/support/file.h
index 8355767ee..e94d23fad 100644
--- a/src/support/file.h
+++ b/src/support/file.h
@@ -39,7 +39,7 @@ namespace Flags {
};
}
-template <typename T>
+template<typename T>
T read_file(const std::string& filename, Flags::BinaryOption binary, Flags::DebugOption debug);
// Declare the valid explicit specializations.
extern template std::string read_file<>(const std::string& , Flags::BinaryOption, Flags::DebugOption);
@@ -50,7 +50,7 @@ class Output {
// An empty filename will open stdout instead.
Output(const std::string& filename, Flags::BinaryOption binary, Flags::DebugOption debug);
~Output() = default;
- template <typename T>
+ template<typename T>
std::ostream &operator<<(const T &v) {
return out << v;
}