This commit is contained in:
HoLLy 2019-11-26 18:34:13 +01:00
Родитель 62ed85e268
Коммит d8036c05f2
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -7,7 +7,7 @@ using WasmLib.FileFormat.Instructions;
namespace WasmLib.Utils namespace WasmLib.Utils
{ {
static class BinaryReaderExtensions internal static class BinaryReaderExtensions
{ {
public static byte ReadVarUint7(this BinaryReader br) public static byte ReadVarUint7(this BinaryReader br)
{ {

Просмотреть файл

@ -2,7 +2,7 @@ using System.IO;
namespace WasmLib.Utils namespace WasmLib.Utils
{ {
interface IDeserializable internal interface IDeserializable
{ {
void Read(BinaryReader br); void Read(BinaryReader br);
} }