File: base64-is-disabled.cpp

package info (click to toggle)
scitokens-cpp 1.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,988 kB
  • sloc: cpp: 25,363; makefile: 14
file content (10 lines) | stat: -rw-r--r-- 167 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
#ifndef JWT_DISABLE_BASE64
#error "This test expects 'JWT_DISABLE_BASE64' to be defined!"
#endif

#include "jwt-cpp/jwt.h"

int main() {
	jwt::date date;
	return 0;
}