--------------------------------------------------------------
| 607 | |
| 608 | // -------------------------------------------------------------- |
| 609 | void |
| 610 | ArrayVariable::OutputLowerBound(std::ostream &out) const |
| 611 | { |
| 612 | out << name; |
| 613 | size_t i; |
| 614 | for (i=0; i<get_dimension(); i++) { |
| 615 | out << "[0]"; |
| 616 | } |
| 617 | } |
| 618 | |
| 619 | // -------------------------------------------------------------- |
| 620 | void |
nothing calls this directly
no outgoing calls
no test coverage detected