mirror of
https://github.com/vgough/encfs.git
synced 2025-01-18 03:49:45 +01:00
13 lines
150 B
C++
13 lines
150 B
C++
|
#include <GL/gl.h>
|
||
|
#include "easylogging++.h"
|
||
|
|
||
|
INITIALIZE_EASYLOGGINGPP
|
||
|
|
||
|
int main(void) {
|
||
|
|
||
|
GLfloat f = 0.1f;
|
||
|
LOG(INFO) << f;
|
||
|
|
||
|
return 0;
|
||
|
}
|