Ignore:
Timestamp:
5 Oct 2015, 20:05:53 (10 years ago)
Author:
tech
Message:

Minor fixes to SEI messages.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HTM-15.1-dev0-Disney/source/Lib/TAppCommon/program_options_lite.h

    r1339 r1344  
    488488    template<>
    489489    inline void
     490      Option< StringAry1d  >::parse(const std::string& arg, const std::vector<int>& idcs, ErrorReporter& err )
     491    {
     492
     493      opt_storage[ idcs[ 0 ] ] = arg;
     494    };
     495
     496    template<>
     497    inline void
     498      Option< StringAry2d  >::parse(const std::string& arg, const std::vector<int>& idcs, ErrorReporter& err )
     499    {
     500
     501      opt_storage[idcs[0]][idcs[1]] = arg;
     502    };
     503
     504
     505    template<>
     506    inline void
    490507      Option< std::vector< char*>  >::parse(const std::string& arg, const std::vector<int>& idcs, ErrorReporter& err )
    491508    {
     
    643660        return *this;
    644661      }
     662
    645663      template<typename T>
    646664      OptionSpecific&
Note: See TracChangeset for help on using the changeset viewer.