Line | Count | Source |
1 | /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying | |
2 | file LICENSE.rst or https://cmake.org/licensing for details. */ | |
3 | #include "cmDebuggerSourceBreakpoint.h" | |
4 | ||
5 | namespace cmDebugger { | |
6 | ||
7 | cmDebuggerSourceBreakpoint::cmDebuggerSourceBreakpoint(int64_t id, | |
8 | int64_t line) | |
9 | 0 | : Id(id) |
10 | 0 | , Line(line) |
11 | 0 | { |
12 | 0 | } |
13 | ||
14 | } // namespace cmDebugger |