Changeset 19177


Ignore:
Timestamp:
08/18/18 23:06:09 (6 years ago)
Author:
tbretz
Message:
Made it compile at ISDC
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/zfits.cc

    r19025 r19177  
    1818    po::options_description control("zfits");
    1919    control.add_options()
    20         ("in",           var<string>()->required(), "")
     20        ("in",           var<string>()
     21#if BOOST_VERSION >= 104200
     22         ->required()
     23#endif
     24         )
    2125        ("out",          var<string>(),             "")
    2226        ("decompress,d", po_switch(),               "")
     
    6468}
    6569
     70struct col_t : fits::Table::Column
     71{
     72    string name;
     73    void *ptr;
     74};
     75
    6676int Compress(const string &ifile, const string &ofile)
    6777{
     
    8595    // columns in the same order as they are in the file
    8696    const fits::Table::Columns &cols= f.GetColumns();
    87 
    88     struct col_t : fits::Table::Column
    89     {
    90         string name;
    91         void *ptr;
    92     };
    93 
    9497
    9598    map<size_t, col_t> columns;
Note: See TracChangeset for help on using the changeset viewer.