diff --git a/include/xlnt/cell/cell.hpp b/include/xlnt/cell/cell.hpp index 3670bd1ee..2b78ef319 100644 --- a/include/xlnt/cell/cell.hpp +++ b/include/xlnt/cell/cell.hpp @@ -272,12 +272,12 @@ class XLNT_API cell /// /// Adds an internal hyperlink to this cell pointing to the given cell. /// - void hyperlink(xlnt::cell target, const std::string& display = ""); + void hyperlink(xlnt::cell target, const std::string &display = ""); /// /// Adds an internal hyperlink to this cell pointing to the given range. /// - void hyperlink(xlnt::range target, const std::string& display = ""); + void hyperlink(xlnt::range target, const std::string &display = ""); /// /// Returns true if this cell has a hyperlink set. @@ -431,10 +431,10 @@ class XLNT_API cell /// class style style(); - /// - /// Returns a wrapper pointing to the named style applied to this cell. - /// - const class style style() const; + /// + /// Returns a wrapper pointing to the named style applied to this cell. + /// + const class style style() const; /// /// Sets the named style applied to this cell to a style named style_name. @@ -670,43 +670,43 @@ XLNT_API bool operator==(const cell &cell, std::nullptr_t); /// XLNT_API std::ostream &operator<<(std::ostream &stream, const xlnt::cell &cell); -template<> +template <> bool cell::value() const; -template<> +template <> int cell::value() const; -template<> +template <> unsigned int cell::value() const; -template<> +template <> long long int cell::value() const; -template<> +template <> unsigned long long cell::value() const; -template<> +template <> float cell::value() const; -template<> +template <> double cell::value() const; -template<> +template <> date cell::value() const; -template<> +template <> time cell::value