11 lines
376 B
C++
11 lines
376 B
C++
#include "base.h"
|
|
|
|
// This is a stub implementation of the application's Main() function.
|
|
// It is required to resolve linker errors when building the test suite,
|
|
// as the test scaffolding pulls in the entire application framework which
|
|
// expects this function to exist. It will not be called during test execution.
|
|
int Main(const ArgsMap& args)
|
|
{
|
|
return 0;
|
|
}
|