Updates for bazel on windows.

This commit is contained in:
2023-05-17 14:26:26 -07:00
parent a8c0ef05fb
commit 9e8f04e9b4
84 changed files with 2789 additions and 5836 deletions

17
temp.cpp Normal file
View File

@@ -0,0 +1,17 @@
#include <iostream>
#using namespace std;
class Logger {
static void LogDebug(const string& message) { cout << message << endl; }
static void LogUnimplementedMethodReal(const string& method_name) {
LogDebug("Unimplemented method: " + method_name);
}
}
#define LogUnimplementedMethod Logger::LogUnimplementedMethodReal(__FUNCTION__)
int main (int argc, char* argv[]) {
Logger::LogUnimplementedMethod;
return 0;
}