| 515 | } |
| 516 | |
| 517 | void ForgeManager::setChartAxesOverride(const fg_chart chart, bool flag) { |
| 518 | auto iter = mChartAxesOverrideMap.find(chart); |
| 519 | if (iter == mChartAxesOverrideMap.end()) { |
| 520 | AF_ERROR("Chart Not Found!", AF_ERR_INTERNAL); |
| 521 | } |
| 522 | mChartAxesOverrideMap[chart] = flag; |
| 523 | } |
| 524 | |
| 525 | } // namespace common |
| 526 | } // namespace arrayfire |
no test coverage detected