We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dae326a + 68b65f1 commit 66b6454Copy full SHA for 66b6454
1 file changed
src/output-flex.cpp
@@ -1388,6 +1388,11 @@ output_flex_t::output_flex_t(
1388
init_lua(m_options.style);
1389
}
1390
1391
+ if (m_tables->empty()) {
1392
+ throw std::runtime_error{
1393
+ "No tables defined in Lua config. Nothing to do!"};
1394
+ }
1395
+
1396
assert(m_table_connections.empty());
1397
for (auto &table : *m_tables) {
1398
m_table_connections.emplace_back(&table, m_copy_thread);
0 commit comments