a08a479fec
2005-04-12 Frank Ch. Eigler <fche@redhat.com> PR mudflap/19266 From Richard Henderson <rth@redhat.com>: * tree-mudflap.c (mf_build_check_statement_for): Correct block splitting logic. 2005-04-12 Frank Ch. Eigler <fche@redhat.com> PR mudflap/19266 * testsuite/libmudflap.c++/c++frags.exp: Also test -O permutation. * testsuite/libmudflap.c++/pass57-frag.cxx: New test. From-SVN: r98028
26 lines
464 B
C++
26 lines
464 B
C++
#include <vector>
|
|
#include <string>
|
|
|
|
class fitscolumn
|
|
{
|
|
private:
|
|
std::string name_, unit_;
|
|
int i, t;
|
|
public:
|
|
fitscolumn (const std::string &nm, const std::string &un,int i1,int t1)
|
|
: name_(nm), unit_(un), i(i1), t(t1){}
|
|
};
|
|
|
|
void init_bintab(std::vector<fitscolumn> & columns_)
|
|
{
|
|
char ttype[81], tunit[81], tform[81];
|
|
long repc;
|
|
int typecode;
|
|
columns_.push_back (fitscolumn (ttype,tunit,1,typecode));
|
|
}
|
|
|
|
int main ()
|
|
{
|
|
return 0;
|
|
}
|