diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-10-24 15:21:05 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-10-24 15:21:05 +0200 |
commit | e7a91badcdd421e04eea8235debc8ae582919744 (patch) | |
tree | d03f25663876c5f78dd698cb5ccf697dac2cfd41 /src | |
parent | 2c89b9f1936869a24fb6da2f313d75004b470d4e (diff) | |
download | biboumi-e7a91badcdd421e04eea8235debc8ae582919744.tar.gz biboumi-e7a91badcdd421e04eea8235debc8ae582919744.tar.bz2 biboumi-e7a91badcdd421e04eea8235debc8ae582919744.tar.xz biboumi-e7a91badcdd421e04eea8235debc8ae582919744.zip |
Use “using” instead of typedef
Diffstat (limited to 'src')
-rw-r--r-- | src/bridge/colors.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bridge/colors.hpp b/src/bridge/colors.hpp index b5e6e7b..2ba80ee 100644 --- a/src/bridge/colors.hpp +++ b/src/bridge/colors.hpp @@ -17,7 +17,7 @@ namespace Xmpp // Contains: // - an XMPP-valid UTF-8 body // - an XML node representing the XHTML-IM body, or null - typedef std::tuple<const std::string, std::unique_ptr<XmlNode>> body; + using body = std::tuple<const std::string, std::unique_ptr<XmlNode>>; } #define IRC_FORMAT_BOLD_CHAR '\x02' // done |