Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cmake-linux-fedora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
container: fedora:${{ matrix.container }}
strategy:
matrix:
container: [40, 41]
container: [41, 42]

steps:
- name: Install Deps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake-linux-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
container: ubuntu:${{matrix.container}}
strategy:
matrix:
container: ['22.04', '24.04', '24.10']
container: ['22.04', '24.04', '24.10', '25.04']
arch: ['amd64', 'arm64']

steps:
Expand Down
2 changes: 2 additions & 0 deletions src/app/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@

#include <QTimer>

#include <iostream>

int main(int argc, char* argv[])
{
Q_INIT_RESOURCE(web_eid_resources);
Expand Down
2 changes: 2 additions & 0 deletions src/controller/inputoutputmode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
#include <QJsonDocument>
#include <QJsonObject>

#include <iostream>

#ifdef Q_OS_WIN
#include <stdio.h>
#include <io.h>
Expand Down
2 changes: 2 additions & 0 deletions src/controller/writeresponse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
#include <QJsonDocument>
#include <QJsonObject>

#include <iostream>

namespace
{

Expand Down
2 changes: 2 additions & 0 deletions src/mac/main.mm
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@

#include "shared.hpp"

#include <iostream>

@implementation NSApplication (MacController)

+ (QVariant)toQVariant:(id)data
Expand Down
Loading