1 /* 2 * Created by Martin on 01/08/2017. 3 * 4 * Distributed under the Boost Software License, Version 1.0. (See accompanying 5 * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 */ 7 8 #include "catch_section_info.h" 9 10 namespace Catch { 11 SectionInfo(SourceLineInfo const & _lineInfo,std::string const & _name)12 SectionInfo::SectionInfo 13 ( SourceLineInfo const& _lineInfo, 14 std::string const& _name ) 15 : name( _name ), 16 lineInfo( _lineInfo ) 17 {} 18 19 } // end namespace Catch 20