Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports-kde
Path: blob/main/deskutils/charmtimetracker/files/patch-Charm_Lotsofcake_Configuration.h
16461 views
1
Fix build with clang7:
2
3
WeeklyTimesheet.cpp:287:37: error: default initialization of an object of const type 'const Lotsofcake::Configuration' requires a user-provided default constructor
4
const Lotsofcake::Configuration configuration;
5
6
--- Charm/Lotsofcake/Configuration.h.orig 2018-09-03 18:53:17 UTC
7
+++ Charm/Lotsofcake/Configuration.h
8
@@ -36,6 +36,8 @@ namespace Lotsofcake {
9
class Configuration
10
{
11
public:
12
+ Configuration();
13
+
14
bool isConfigured() const;
15
16
void importFromTaskExport(const TaskExport &exporter);
17
18