mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 12:24:24 +00:00
527238e008
Now that MSVC 2013 is required (commit f4824d3
), we can simply use C99
headers that are provided [1]. This means we can rely on <stdint.h> to
provide intXX_t and uintXX_t types, and <inttypes.h> to provide PRIxx
macros.
[1] https://devblogs.microsoft.com/cppblog/c99-library-support-in-visual-studio-2013/
Change-Id: I0cc707907f8aca05ae543188cc01e6c50d517f5a
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/107839
Auto-Submit: Matthew Dempsky <mdempsky@google.com>
Commit-Queue: Vyacheslav Egorov <vegorov@google.com>
Reviewed-by: Vyacheslav Egorov <vegorov@google.com>
18 lines
593 B
C++
18 lines
593 B
C++
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
// This file is linked into the dart executable when it does not have
|
|
// Observatory baked in.
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace dart {
|
|
namespace bin {
|
|
|
|
static const uint8_t observatory_assets_archive_[] = {'\0'};
|
|
unsigned int observatory_assets_archive_len = 0;
|
|
const uint8_t* observatory_assets_archive = observatory_assets_archive_;
|
|
|
|
} // namespace bin
|
|
} // namespace dart
|