File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1393
1393
], # conditions
1394
1394
}, # Release
1395
1395
}, # configurations
1396
- 'cflags' : [ '-Wno-type-limits' , ],
1396
+ 'cflags! ' : [ '-Wall' , '-Wextra' ],
1397
1397
'msvs_disabled_warnings' : [
1398
1398
4245 , # Conversion with signed/unsigned mismatch.
1399
1399
4267 , # Conversion with possible loss of data.
Original file line number Diff line number Diff line change @@ -4337,14 +4337,13 @@ class V8_EXPORT CompiledWasmModule {
4337
4337
class V8_EXPORT WasmModuleObject : public Object {
4338
4338
public:
4339
4339
// TODO(clemensh): Remove after 7.3 branch.
4340
- V8_DEPRECATED (" Use OwnedBuffer" , typedef )
4341
- std::pair<std::unique_ptr<const uint8_t []>, size_t > SerializedModule;
4340
+ typedef std::pair<std::unique_ptr<const uint8_t []>, size_t > SerializedModule;
4342
4341
4343
4342
/* *
4344
4343
* A unowned reference to a byte buffer.
4345
4344
* TODO(clemensh): Remove after 7.3 branch.
4346
4345
*/
4347
- V8_DEPRECATED ( " Use MemorySpan<const uint8_t> " , struct ) BufferReference {
4346
+ struct BufferReference {
4348
4347
const uint8_t * start;
4349
4348
size_t size;
4350
4349
BufferReference (const uint8_t * start, size_t size)
You can’t perform that action at this time.
0 commit comments