mirror of
https://github.com/status-im/QR-Code-generator.git
synced 2025-02-24 10:28:20 +00:00
Updated some C++ implementation code to be stricter by adding appropriate 'using' directives for C standard library types.
This commit is contained in:
parent
58046f902f
commit
d17ff80b1a
@ -28,6 +28,10 @@
|
||||
#include "BitBuffer.hpp"
|
||||
#include "QrCode.hpp"
|
||||
|
||||
using std::int8_t;
|
||||
using std::uint8_t;
|
||||
using std::size_t;
|
||||
|
||||
|
||||
namespace qrcodegen {
|
||||
|
||||
|
@ -31,6 +31,7 @@
|
||||
#include <vector>
|
||||
#include "QrCode.hpp"
|
||||
|
||||
using std::uint8_t;
|
||||
using qrcodegen::QrCode;
|
||||
using qrcodegen::QrSegment;
|
||||
|
||||
|
@ -26,6 +26,8 @@
|
||||
#include "BitBuffer.hpp"
|
||||
#include "QrSegment.hpp"
|
||||
|
||||
using std::uint8_t;
|
||||
|
||||
|
||||
namespace qrcodegen {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user