Skip to content

Commit 5dd5830

Browse files
metsmamrts
authored andcommitted
Make Reader simple struct
Signed-off-by: Raul Metsma <[email protected]>
1 parent eee1522 commit 5dd5830

File tree

7 files changed

+11
-3
lines changed

7 files changed

+11
-3
lines changed

.github/workflows/cmake-linux-fedora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
container: fedora:${{ matrix.container }}
1515
strategy:
1616
matrix:
17-
container: [40, 41]
17+
container: [41, 42]
1818

1919
steps:
2020
- name: Install Deps

.github/workflows/cmake-linux-ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
container: ubuntu:${{matrix.container}}
1818
strategy:
1919
matrix:
20-
container: ['22.04', '24.04', '24.10']
20+
container: ['22.04', '24.04', '24.10', '25.04']
2121
arch: ['amd64', 'arm64']
2222

2323
steps:

src/app/main.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626

2727
#include <QTimer>
2828

29+
#include <iostream>
30+
2931
int main(int argc, char* argv[])
3032
{
3133
Q_INIT_RESOURCE(web_eid_resources);

src/controller/inputoutputmode.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@
2525
#include <QJsonDocument>
2626
#include <QJsonObject>
2727

28+
#include <iostream>
29+
2830
#ifdef Q_OS_WIN
2931
#include <stdio.h>
3032
#include <io.h>

src/controller/writeresponse.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
#include <QJsonDocument>
2828
#include <QJsonObject>
2929

30+
#include <iostream>
31+
3032
namespace
3133
{
3234

src/mac/main.mm

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434

3535
#include "shared.hpp"
3636

37+
#include <iostream>
38+
3739
@implementation NSApplication (MacController)
3840

3941
+ (QVariant)toQVariant:(id)data

0 commit comments

Comments
 (0)