C++: Fix database inconsistency issue from ODR violation.

This commit is contained in:
Mathias Vorreiter Pedersen 2022-09-30 17:04:23 +01:00
Родитель 56b5010f6b
Коммит cd65e73ade
3 изменённых файлов: 3 добавлений и 2 удалений

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

@ -1,4 +1,4 @@
template<typename T> void range(T); #include "test_util.h"
struct List { struct List {
struct List* next; struct List* next;

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

@ -1,4 +1,4 @@
template<typename T> void range(T value); #include "test_util.h"
int f1(int x, int y) { int f1(int x, int y) {
if (x < 500) { if (x < 500) {
if (x > 400) { if (x > 400) {

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

@ -0,0 +1 @@
template<typename T> void range(T value);