mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
19 lines
240 B
C
19 lines
240 B
C
|
|
/*
|
||
|
|
* Copyright (c) 2023, Sam Atkins <atkinssj@serenityos.org>
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <AK/Types.h>
|
||
|
|
|
||
|
|
namespace CMake {
|
||
|
|
|
||
|
|
struct Position {
|
||
|
|
size_t line { 0 };
|
||
|
|
size_t column { 0 };
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|