Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-04-17 07:17:24 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-17 07:21:24 +0300
commite12c08e8d170b7ca40f204a5b0423c23a9fbc2c1 (patch)
tree8cf3453d12edb177a218ef8009357518ec6cab6a /source/blender/freestyle/intern/view_map/ViewMapIO.h
parentb3dabc200a4b0399ec6b81f2ff2730d07b44fcaa (diff)
ClangFormat: apply to source, most of intern
Apply clang format as proposed in T53211. For details on usage and instructions for migrating branches without conflicts, see: https://wiki.blender.org/wiki/Tools/ClangFormat
Diffstat (limited to 'source/blender/freestyle/intern/view_map/ViewMapIO.h')
-rw-r--r--source/blender/freestyle/intern/view_map/ViewMapIO.h50
1 files changed, 22 insertions, 28 deletions
diff --git a/source/blender/freestyle/intern/view_map/ViewMapIO.h b/source/blender/freestyle/intern/view_map/ViewMapIO.h
index 57eb450d45b..98d27852c8d 100644
--- a/source/blender/freestyle/intern/view_map/ViewMapIO.h
+++ b/source/blender/freestyle/intern/view_map/ViewMapIO.h
@@ -36,9 +36,9 @@ namespace ViewMapIO {
static const unsigned ZERO = UINT_MAX;
-int load(istream& in, ViewMap *vm, ProgressBar *pb = NULL);
+int load(istream &in, ViewMap *vm, ProgressBar *pb = NULL);
-int save(ostream& out, ViewMap *vm, ProgressBar *pb = NULL);
+int save(ostream &out, ViewMap *vm, ProgressBar *pb = NULL);
namespace Options {
@@ -53,60 +53,54 @@ void rmFlags(const unsigned char flags);
unsigned char getFlags();
-void setModelsPath(const string& path);
+void setModelsPath(const string &path);
string getModelsPath();
-}; // End of namepace Options
+}; // namespace Options
#ifdef IRIX
namespace Internal {
-template <unsigned S>
-ostream& write(ostream& out, const char *str)
+template<unsigned S> ostream &write(ostream &out, const char *str)
{
- out.put(str[S - 1]);
- return write<S - 1>(out, str);
+ out.put(str[S - 1]);
+ return write<S - 1>(out, str);
}
-template<>
-ostream& write<1>(ostream& out, const char *str)
+template<> ostream &write<1>(ostream &out, const char *str)
{
- return out.put(str[0]);
+ return out.put(str[0]);
}
-template<>
-ostream& write<0>(ostream& out, const char *)
+template<> ostream &write<0>(ostream &out, const char *)
{
- return out;
+ return out;
}
-template <unsigned S>
-istream& read(istream& in, char *str)
+template<unsigned S> istream &read(istream &in, char *str)
{
- in.get(str[S - 1]);
- return read<S - 1>(in, str);
+ in.get(str[S - 1]);
+ return read<S - 1>(in, str);
}
-template<>
-istream& read<1>(istream& in, char *str)
+template<> istream &read<1>(istream &in, char *str)
{
- return in.get(str[0]);
+ return in.get(str[0]);
}
-template<>
-istream& read<0>(istream& in, char *)
+template<> istream &read<0>(istream &in, char *)
{
- return in;
+ return in;
}
-} // End of namespace Internal
+} // End of namespace Internal
-#endif // IRIX
+#endif // IRIX
-} // End of namespace ViewMapIO
+} // End of namespace ViewMapIO
} /* namespace Freestyle */
-#endif // __FREESTYLE_VIEW_MAP_IO_H__
+#endif // __FREESTYLE_VIEW_MAP_IO_H__