From 13e8ca96f1230c3aeaabcd95f082a68f2fd22f25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Dziepak?= Date: Tue, 2 Jun 2015 14:04:33 +0200 Subject: [PATCH] compound: make compound_type::type() const MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Dziepak --- compound.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compound.hh b/compound.hh index e7304d68d7..99427917d9 100644 --- a/compound.hh +++ b/compound.hh @@ -55,7 +55,7 @@ public: compound_type(compound_type&&) = default; - auto const& types() { + auto const& types() const { return _types; }