/Users/deen/code/yugabyte-db/src/yb/util/source_location.h
Line | Count | Source |
1 | | // Copyright (c) YugaByte, Inc. |
2 | | // |
3 | | // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
4 | | // in compliance with the License. You may obtain a copy of the License at |
5 | | // |
6 | | // http://www.apache.org/licenses/LICENSE-2.0 |
7 | | // |
8 | | // Unless required by applicable law or agreed to in writing, software distributed under the License |
9 | | // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
10 | | // or implied. See the License for the specific language governing permissions and limitations |
11 | | // under the License. |
12 | | // |
13 | | |
14 | | #ifndef YB_UTIL_SOURCE_LOCATION_H |
15 | | #define YB_UTIL_SOURCE_LOCATION_H |
16 | | |
17 | | #include <string> |
18 | | |
19 | | namespace yb { |
20 | | |
21 | | struct SourceLocation { |
22 | | const char* file_name; |
23 | | int line_number; |
24 | | |
25 | | std::string ToString() const; |
26 | | }; |
27 | | |
28 | 12.3M | #define SOURCE_LOCATION() SourceLocation {__FILE__, __LINE__} |
29 | | |
30 | | } // namespace yb |
31 | | |
32 | | #endif // YB_UTIL_SOURCE_LOCATION_H |