Skip to content
Open
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
39 changes: 39 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,40 @@
packaging/deb.*

# ignore stuff produced by automake
Makefile
Makefile.in
aclocal.m4
autom4te.cache/
compile
config.guess
config.h
config.h.in
config.log
config.status
config.sub
configure
depcomp
examples/.deps/
examples/Makefile
examples/Makefile.in
examples/affinity_stack
examples/affinity_stack.o
examples/list_cpus
examples/list_cpus.o
examples/list_nearby_cpus
examples/list_nearby_cpus.o
examples/list_pci_devices
examples/list_pci_devices.o
examples/simple_affinity
examples/simple_affinity.o
include/Makefile
include/Makefile.in
install-sh
missing
stamp-h1
test-driver
tests/.deps/
tests/Makefile
tests/Makefile.in
tests/test
tests/test.o
2 changes: 1 addition & 1 deletion include/cpuaff/impl/linux_impl/linux.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ typedef int cpu_identifier_type;
class cpu_identifier_wrapper
{
public:
inline cpu_identifier_wrapper() {}
inline cpu_identifier_wrapper() : id_(-1) {}
inline cpu_identifier_wrapper(const cpu_identifier_type &id) : id_(id) {}

public:
Expand Down
Loading