This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121c121,142 | |
< ООО "ЛЕЧЕБНЫЙ ЦЕНТР" 119021, Москва г, Тимура Фрунзе ул, д.15/1 - | |
--- | |
> "ООО ""Клиники Чайка""; | |
> ООО ""Клиники Чайка"", клиника в Рига Лэнд; | |
> ООО ""Клиники Чайка"", клиника на Войковской; | |
> ООО ""Клиники Чайка"", клиника в Белых садах; | |
> Общество с ограниченной ответственностью ""СПОРТМЕДИЦИНА""" "123317, Москва г, Пресненская наб, д.8, корп.1; | |
> 143420, Московская обл, Красногорский р-н, Михалково д; | |
> 119269, Москва г, Ленинградское ш, д.16А, корп.3; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
class MemberClass{ | |
public: | |
MemberClass() { std::cout << "MemberClass: default constructor\n"; } | |
MemberClass(const MemberClass&) { std::cout << "MemberClass: copy constructor\n"; } | |
MemberClass(MemberClass&&) { std::cout << "MemberClass: move constructor\n"; } | |
MemberClass& operator=(const MemberClass&) { std::cout << "MemberClass: copy assignment\n"; return *this; } | |
MemberClass& operator=(MemberClass&&) { std::cout << "MemberClass: move assignment\n"; return *this; } | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Created ./build/BUILDPREFIX_release and ..._debug directories | |
/usr/bin/make -C "./build/BUILDPREFIX_debug" -r -f ../../build/Makefile.tbb cfg=debug | |
../../build/Makefile.tbb:39: CONFIG: cfg=debug arch=intel64 compiler=clang os=macos runtime=cc4.2.1_os10.8.5 | |
clang++ -o concurrent_hash_map.o -c -MMD -g -O0 -DTBB_USE_DEBUG -DUSE_PTHREAD -m64 -fPIC -D__TBB_BUILD=1 -Wall -Wno-non-virtual-dtor -I../../src -I../../src/rml/include -I../../include ../../src/tbb/concurrent_hash_map.cpp | |
clang++ -o concurrent_queue.o -c -MMD -g -O0 -DTBB_USE_DEBUG -DUSE_PTHREAD -m64 -fPIC -D__TBB_BUILD=1 -Wall -Wno-non-virtual-dtor -I../../src -I../../src/rml/include -I../../include ../../src/tbb/concurrent_queue.cpp | |
clang++ -o concurrent_vector.o -c -MMD -g -O0 -DTBB_USE_DEBUG -DUSE_PTHREAD -m64 -fPIC -D__TBB_BUILD=1 -Wall -Wno-non-virtual-dtor -I../../src -I../../src/rml/include -I../../include ../../src/tbb/concurrent_vector.cpp | |
clang++ -o dynamic_link.o -c -MMD -g -O0 -DTBB_USE_DEBUG -DUSE_PTHREAD -m64 -fPIC -D__TBB |