summaryrefslogtreecommitdiff
path: root/boost/gil/extension/io/jpeg/detail/base.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/gil/extension/io/jpeg/detail/base.hpp')
-rw-r--r--boost/gil/extension/io/jpeg/detail/base.hpp38
1 files changed, 15 insertions, 23 deletions
diff --git a/boost/gil/extension/io/jpeg/detail/base.hpp b/boost/gil/extension/io/jpeg/detail/base.hpp
index 551c4759d1..b639462abd 100644
--- a/boost/gil/extension/io/jpeg/detail/base.hpp
+++ b/boost/gil/extension/io/jpeg/detail/base.hpp
@@ -1,29 +1,21 @@
-/*
- Copyright 2010 Christian Henning
- Use, modification and distribution are subject to the Boost Software License,
- Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
- http://www.boost.org/LICENSE_1_0.txt).
-*/
-
-/*************************************************************************************************/
-
+//
+// Copyright 2010 Christian Henning
+//
+// Distributed under the Boost Software License, Version 1.0
+// See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt
+//
#ifndef BOOST_GIL_EXTENSION_IO_JPEG_DETAIL_BASE_HPP
#define BOOST_GIL_EXTENSION_IO_JPEG_DETAIL_BASE_HPP
-////////////////////////////////////////////////////////////////////////////////////////
-/// \file
-/// \brief
-/// \author Christian Henning \n
-///
-/// \date 2010 \n
-///
-////////////////////////////////////////////////////////////////////////////////////////
#include <boost/gil/extension/io/jpeg/tags.hpp>
-namespace boost { namespace gil {
+#include <csetjmp>
-#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
-#pragma warning(push)
+namespace boost { namespace gil {
+
+#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
+#pragma warning(push)
#pragma warning(disable:4324) //structure was padded due to __declspec(align())
#endif
@@ -36,9 +28,9 @@ protected:
jmp_buf _mark;
};
-#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
-#pragma warning(pop)
-#endif
+#if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
+#pragma warning(pop)
+#endif
} // namespace gil
} // namespace boost