catch_section_info.cpp 454 B

12345678910111213141516171819
  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. #include "catch_section_info.h"
  8. namespace Catch {
  9. SectionInfo::SectionInfo
  10. ( SourceLineInfo const& _lineInfo,
  11. std::string const& _name )
  12. : name( _name ),
  13. lineInfo( _lineInfo )
  14. {}
  15. } // end namespace Catch