Commit c8f431de3aaca35149ec75bea521d6bcaf8603ac

Authored by m-holger
Committed by GitHub
2 parents 4fd8dda5 4ce682b2

Merge pull request #1632 from m-holger/hc

Minor adjustments to aid CLion use
.idea/.gitignore
... ... @@ -9,3 +9,5 @@
9 9 /inspectionProfiles
10 10 # We use CMakePresets.json. Don't check in cmake profiles.
11 11 /cmake.xml
  12 +# Copilot
  13 +copilot.*
... ...
include/qpdf/ObjectHandle.hh
... ... @@ -51,7 +51,7 @@ namespace qpdf
51 51 // QPDFObjGen and bool.
52 52 class BaseHandle
53 53 {
54   - friend class QPDF;
  54 + friend class ::QPDF;
55 55  
56 56 public:
57 57 explicit inline operator bool() const;
... ...
include/qpdf/QPDFObjectHandle.hh
... ... @@ -43,7 +43,6 @@
43 43 #include <qpdf/QPDFTokenizer.hh>
44 44  
45 45 class Pipeline;
46   -class QPDF;
47 46 class QPDF_Array;
48 47 class QPDF_Bool;
49 48 class QPDF_Dictionary;
... ...