mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
14 lines
237 B
C++
14 lines
237 B
C++
|
#ifndef BASE64_H
|
||
|
#define BASE64_H
|
||
|
|
||
|
#pragma clang diagnostic push
|
||
|
#pragma clang diagnostic ignored "-Wconversion"
|
||
|
#pragma clang diagnostic ignored "-Wshorten-64-to-32"
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
|
||
|
#pragma clang diagnostic pop
|
||
|
|
||
|
#endif // BASE64_H
|