We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 26dc81a + 54ba420 commit 5c269f5Copy full SHA for 5c269f5
README.md
@@ -23,7 +23,7 @@ Then just type this in your `CMakeLists.txt`:
23
add_subdirectory(i3ipc++)
24
25
include_directories(${I3IPCpp_INCLUDE_DIRS})
26
-link_directories(${I3IPCpp_LIBRARY_DIRS)
+link_directories(${I3IPCpp_LIBRARY_DIRS})
27
...
28
```
29
src/ipc.cpp
@@ -242,8 +242,8 @@ std::vector<output_t> I3Connection::get_outputs() const {
242
outputs.push_back({
243
.name = name.asString(),
244
.active = active.asBool(),
245
- .rect = parse_rect_from_json(rect),
246
.current_workspace = (current_workspace.isNull() ? std::string() : current_workspace.asString()),
+ .rect = parse_rect_from_json(rect),
247
});
248
}
249
0 commit comments